Translated data cannot be obtained for Chinese and Traditional Chinese

When I call the following query, the returned translation data is empty, but my website displays the translated data when switching between Simplified and Traditional Chinese. Why is this? Can anyone help me solve this problem? I am not using a third-party translation application or a dynamic replacement plugin.

{
translatableResources(resourceType: PRODUCT, first: 60) {
edges {
node {
resourceId
translatableContent {
digest
key
locale
value
type

}
translations(locale: “zh-CN”) {
key
locale
value
outdated
updatedAt

}

}

}

}

Hi @ze_zhuang

Have you found a solution to this? We’re having the same issue with translatableResources. It returns the translation data for other languages, except for Simplified and Traditional Chinese. I think there might be a bug on Shopify side.

query {
translatableResources(first: 250, resourceType: PRODUCT) {
edges {
node {
resourceId
translatableContent {
key
value
digest
locale
}
translations(locale: “zh-cn”) {
key
locale
outdated
updatedAt
value
}
}
}
}
}

I have already spoken with the Shopify developers about this issue, and they have started fixing it.