Product_update errors

I’m getting some "Unexpected Error"s on some product_update mutations. Here is what I am gettting back:

{“errors”:[{“message”:“Unexpected Error”,“operation”:“product_update”,“field”:“product_update”,“request_id”:“5e5854fad6e6033607e704f9”,“code”:22}],“data”:{“product_update”:null,“warehouse_product_update”:{“request_id”:“5e5854fad6e6033607e704fd”,“complexity”:10}}}

{“errors”:[{“message”:“Unexpected Error”,“operation”:“product_update”,“field”:“product_update”,“request_id”:“5e585618375852a2d366fdbf”,“code”:22}],“data”:{“product_update”:null,“warehouse_product_update”:{“request_id”:“5e585618375852a2d366fdc3”,“complexity”:10}}}

Can you tell me what I’m doing wrong please?
Thanks
Al

Hi @albrana !
I apologize for my delay on this.
The errors are due to the empty fields, for example you are sending something like:

dimensions: { weight: "3.20", height: "", width: "", length: "" }

but instead this should work:

dimensions: { weight: "3.20"}

Let me know if this doesn’t help.
Thanks!,
Tom

Thanks Tomas. I should be able to make this work now.