Product_Update not working - SKU always Not Found

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

Hey @atlatin,

Thanks for reaching out!
I’ll look into this and get back to you shortly.

Best,
RayanP

Hey @atlatin,

Thanks for hanging in there!

Could you try adding the field customer_account_id = 74790 , to your mutation to see if this solves thie issue?

Please let me know if you have any questions or concerns,

Best,
RayanP

That fixed it. I guess that wasn’t required until recently. Thank you for your help!

1 Like