Want an urdu title in shopify admin graphql query

Want an urdu title in shopify admin graphql query


0

I want to support multiple languages:

{
  products(first:10,) {
    edges {
      node {
        title                
        # Include other fields to retrieve within translations
      }
    }
  }
}

I want the title response in Urdu. I am using admin/api/2023-07/graphql.json

1 Answer
1


0

I believe this is done using the @inContext decorator.

query getProducts @inContext(language: UR) {
  products(first:10)  {
    edges {
      node {
        title                
        # Include other fields to retrieve within translations
      }
    }
  }
}



Leave a Reply

Your email address will not be published. Required fields are marked *