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?