No description for translation with Graphql

Hi there

I want to get the translation for the product description. However using this query:

query MyQuery {
products(first: 10) {
edges {
node {
translations(locale: “en”) {
key
value
}
}
}
}
}

only returns the following keys : body_html, handle, meta_description, meta_title, title, product_type. However the description of the product is missing. Has anybody the same problem? How do I access the description translation?

Hi Evolyce,

If you try to query a product individually, can you see the description returned? EG:

query GetProductTranslations {
  product(id: "gid://shopify/Product/PRODUCT_ID") {
    title
    descriptionHtml
    translations(locale: "en") {
      key
      value
    }
  }
}