Hi @tomasw,
For Order Update mutation, can we have a query to update similar to the below query?
mutation {
order_update(
data: {
order_id: “T3JkZXI6MTcxNDE1NjE0”
packing_note: “Some note for the Packers”
profile: “default”
priority_flag:true
holds:{
operator_hold:true
}
}
) {
request_id
complexity
}
}
When I try to update it is throwing an exception as data has an invalid value.