Around the past week or so, this error started happening anytime we try to use the mutation for product_update:
mutation {
product_update(
data: {
sku: “SKU-EXAMPLE”
dropship:false
tags: “EXAMPLE”
}
) {
request_id
complexity
}
}
Gives the below error:
{
“errors”: [
{
“message”: “Sku ‘SKU-EXAMPLE’ not found”,
“operation”: “product_update”,
“field”: “product_update”,
“request_id”: “6565f7ab1e96b52aa3146b44”,
“code”: 5
}
This happens with every SKU and every client so we can never use the product_update mutation at the moment.
Can you please let me know how this can be fixed? It was working fine until about a week ago and we didn’t change anything on our end.
Thank you