想要在shopify管理graphql查询中有一个乌尔都语标题

问题描述 投票:0回答:1

我想支持多种语言:

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

我想要乌尔都语的标题回复。我正在使用 admin/api/2023-07/graphql.json

graphql internationalization shopify-api
1个回答
0
投票

我相信这是使用 @inContext 装饰器完成的。

query getProducts @inContext(language: UR) {
  products(first:10)  {
    edges {
      node {
        title                
        # Include other fields to retrieve within translations
      }
    }
  }
}
© www.soinside.com 2019 - 2024. All rights reserved.