--- title: HasLocalizationExtensions - GraphQL Admin description: >- Localization extensions associated with the specified resource. For example, the tax id for government invoice. api_version: 2026-04 api_name: admin type: interface api_type: graphql source_url: html: >- https://shopify.dev/docs/api/admin-graphql/latest/interfaces/HasLocalizationExtensions md: >- https://shopify.dev/docs/api/admin-graphql/latest/interfaces/HasLocalizationExtensions.md --- # Has​Localization​Extensions interface Localization extensions associated with the specified resource. For example, the tax id for government invoice. ## Fields * localization​Extensions [Localization​Extension​Connection!](https://shopify.dev/docs/api/admin-graphql/latest/connections/LocalizationExtensionConnection) non-nullDeprecated * country​Codes [\[Country​Code!\]](https://shopify.dev/docs/api/admin-graphql/latest/enums/CountryCode) ### Arguments The country codes of the extensions. * purposes [\[Localization​Extension​Purpose!\]](https://shopify.dev/docs/api/admin-graphql/latest/enums/LocalizationExtensionPurpose) The purpose of the extensions. * first [Int](https://shopify.dev/docs/api/admin-graphql/latest/scalars/Int) The first `n` elements from the [paginated list](https://shopify.dev/api/usage/pagination-graphql). * after [String](https://shopify.dev/docs/api/admin-graphql/latest/scalars/String) The elements that come after the specified [cursor](https://shopify.dev/api/usage/pagination-graphql). * last [Int](https://shopify.dev/docs/api/admin-graphql/latest/scalars/Int) The last `n` elements from the [paginated list](https://shopify.dev/api/usage/pagination-graphql). * before [String](https://shopify.dev/docs/api/admin-graphql/latest/scalars/String) The elements that come before the specified [cursor](https://shopify.dev/api/usage/pagination-graphql). * reverse [Boolean](https://shopify.dev/docs/api/admin-graphql/latest/scalars/Boolean) Default:false Reverse the order of the underlying list. *** *** ##### Variables ```json { "localizationExtensions": { "countryCodes": "", "purposes": "", "first": "", "after": "", "last": "", "before": "", "reverse": "" } } ``` ##### Schema ```graphql interface HasLocalizationExtensions { localizationExtensions: LocalizationExtensionConnection! } ```