Hi!
I’m trying to translate my products to support Swedish. I have managed to get Title, Description, and Option names translated so far using GraphQL. However, I’m having issues with the Option values.
These are the mutations I’ve been successfully using so far:
mutation translationsRegister($resourceId: ID!, $translations: [TranslationInput!]!) {
translationsRegister(resourceId: $resourceId, translations: $translations) {
translations {
key
locale
value
}
userErrors {
field
message
}
}
}
mutation translationsRegister($resourceId: ID!, $translations: [TranslationInput!]!) {
translationsRegister(resourceId: $resourceId, translations: $translations) {
userErrors {
field
message
}
}
}
Would it be possible to get Option values translated using either of these, and if so how would I go about it? If that’s not possible, are there any other mutations or methods that could get it done?
Any help is much appreciated!
Thanks