--- title: SegmentFilter - GraphQL Admin description: The filters used in segment queries associated with a shop. api_version: 2026-04 api_name: admin type: interface api_type: graphql source_url: html: 'https://shopify.dev/docs/api/admin-graphql/latest/interfaces/SegmentFilter' md: >- https://shopify.dev/docs/api/admin-graphql/latest/interfaces/SegmentFilter.md --- # Segment​Filter interface Requires `read_customers` access scope. The filters used in segment queries associated with a shop. ## Fields * localized​Name [String!](https://shopify.dev/docs/api/admin-graphql/latest/scalars/String) non-null The localized name of the filter. * multi​Value [Boolean!](https://shopify.dev/docs/api/admin-graphql/latest/scalars/Boolean) non-null Whether a file can have multiple values for a single customer. * query​Name [String!](https://shopify.dev/docs/api/admin-graphql/latest/scalars/String) non-null The query name of the filter. *** ##### Variables ```json { "localizedName": "", "multiValue": "", "queryName": "" } ``` ##### Schema ```graphql interface SegmentFilter { localizedName: String! multiValue: Boolean! queryName: String! } ```