POSTMAN
Is there any way to get metafields data through the API that has been translated into a specific language using the Translate & Adapt app?
https://xxlgastro.myshopify.com/api/2024-10/graphql.json - my request
body
{
“query”: “query { product(id: "gid://shopify/Product/9674322116923") { title metafield(namespace: "custom", key: "attribute_table") { value } } }”
}
the response below
{
“data”: {
“product”: {
“title”: “1/2 Ruszt "O" 535x625mm (CBQ-120)”,
“metafield”: {
“value”: “{"Waga (kg)":"6","Długość (mm)":"625","Szerokość (mm)":"535","Wymiary blach":"535 x 625 mm"}”
}
}
}
}
In the example I am making a request to get the product title and a certain metafield which is json. In the response I get Polish which is the default language but how to get this data in other languages?