When adding multiple tags in different languages, at most one tag is saved in languages other than english. However if the tags in other languages has english words combined, those tags are saved.
graphql query:
mutation tagsAdd($id: ID!, $tags: [String!]!) {
tagsAdd(id: $id, tags: $tags) {
node {
id
}
userErrors {
field
message
}
}
}
Graphql variables:
{
"id": "{order_id}",
"tags": [
"नेपाल",
"जापान",
"काठमाडौं"
]
}
In the above graphql mutation, only the first tag i.e. “नेपाल” is saved and rest of the tags are ignored (not saved).
But if you add english words or english word combined with other language, those tags are saved. For example: “Nepal”, “नेपालnepal”, “Tag”, etc. are saved.