Hello, I have a lot of metafields that I want to translate into another language through the GraphQL API but tried with metafield key and namespace and all I get is that Key [key] is not a valid translatable field
this is the query
mutation translationsRegister($resourceId: ID!, $translations: [TranslationInput!]!) {
translationsRegister(resourceId: $resourceId, translations: $translations) {
userErrors {
message
field
}
translations {
key
value
}
}
}
{
"resourceId": "gid://shopify/Product/xxx",
"translations": [
{
"locale": "ar",
"key": "placeholder",
"value": "placeholder",
"translatableContentDigest": "placeholder"
}
]
}
