Tell us what you are trying to do?
I have a website that uses woocommerce, I created a product and wanted to display it in another language. I translated the product but when I try to do a query my attributes are not present.
Result of query looks like this:
`
"allPaSize": {
"nodes": []
},
`
In my initial product result looks like this:
`
"allPaSize": {
"nodes": [
{
"id": "someId",
"name": "37",
"variations": {
"nodes": [
{
"price": "10",
"databaseId": 10,
"attributes": {
"nodes": [
{
"value": "Enabled"
},
{
"value": "Standard"
},
{
"value": "37"
}
]
}
}
...
`
How can I fix this issue?