Issue on Order Update

I am getting an error response while trying to update a product’s shipping address

 mutation {
   order_update(
     data: {
       order_id: "T3JkZXI6MTQ3MDUzNTg1"
       order_number: "11201"
       order_date: "2020-08-27 08:00:00"
       shipping_address: {
         first_name: "Jack"
         company: "Company Name"
         address1: "Kishoregonj Nagua"
         address2: "Kishoregonj Nagua"
         city: "Kishoregonj"
         zip: "2233"
         email: "jack22@gmail.com"
         phone: "01555553334"
       }
     }
   ) {
     request_id
     complexity
     order {
       id
       order_number
     }
   }
 }

Response

 {
     "errors": [
         {
             "message": "Unexpected Error",
             "operation": "order_update",
             "field": "order_update",
             "request_id": "5f5f9d70d0a0cb501d8cd5c3",
             "code": 22
         }
     ],
     "data": {
         "order_update": null
     }
 }

Hi @Mahibur
Any chance you could try including the country as well?
Let me know if that still doesn’t work.
Thanks in advance!
Tom

Hi @tomasw
Yes. We will use country as well.
It is working now with the country parameter.
Thank you!

That is great @Mahibur!
I will submit a ticket for a better return error on these cases.
Thanks again!
Tom