--- title: HasPublishedTranslations - GraphQL Admin description: Published translations associated with the resource. api_version: 2026-04 api_name: admin type: interface api_type: graphql source_url: html: >- https://shopify.dev/docs/api/admin-graphql/latest/interfaces/HasPublishedTranslations md: >- https://shopify.dev/docs/api/admin-graphql/latest/interfaces/HasPublishedTranslations.md --- # Has​Published​Translations interface Published translations associated with the resource. ## Fields * translations [\[Translation!\]!](https://shopify.dev/docs/api/admin-graphql/latest/objects/Translation) non-null The published translations associated with the resource. * locale [String!](https://shopify.dev/docs/api/admin-graphql/latest/scalars/String) required ### Arguments Filters translations locale. * market​Id [ID](https://shopify.dev/docs/api/admin-graphql/latest/scalars/ID) Filters translations by market ID. Use this argument to retrieve content specific to a market. *** *** ##### Variables ```json { "translations": [ { "locale": "", "marketId": "" } ] } ``` ##### Schema ```graphql interface HasPublishedTranslations { translations: [Translation!]! } ```