--- title: HasLocalizedFields - GraphQL Admin description: Localized fields associated with the specified resource. api_version: 2025-10 api_name: admin type: interface api_type: graphql source_url: html: >- https://shopify.dev/docs/api/admin-graphql/2025-10/interfaces/HasLocalizedFields md: >- https://shopify.dev/docs/api/admin-graphql/2025-10/interfaces/HasLocalizedFields.md --- # Has​Localized​Fields interface Localized fields associated with the specified resource. ## Fields * localized​Fields [Localized​Field​Connection!](https://shopify.dev/docs/api/admin-graphql/2025-10/connections/LocalizedFieldConnection) non-null List of localized fields for the resource. * country​Codes [\[Country​Code!\]](https://shopify.dev/docs/api/admin-graphql/2025-10/enums/CountryCode) ### Arguments The country codes of the extensions. * purposes [\[Localized​Field​Purpose!\]](https://shopify.dev/docs/api/admin-graphql/2025-10/enums/LocalizedFieldPurpose) The purpose of the extensions. * first [Int](https://shopify.dev/docs/api/admin-graphql/2025-10/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/2025-10/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/2025-10/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/2025-10/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/2025-10/scalars/Boolean) Default:false Reverse the order of the underlying list. *** *** ##### Variables ```json { "localizedFields": { "countryCodes": "", "purposes": "", "first": "", "after": "", "last": "", "before": "", "reverse": "" } } ``` ##### Schema ```graphql interface HasLocalizedFields { localizedFields: LocalizedFieldConnection! } ```