BatchOrderInput
Input to batch order create and update
input BatchOrderInput {
id: Int!
orderRows: [BatchOrderRowInput]
status: BatchOrderStatusInput
shipments: [BatchOrderShipmentInput]
}
Fields
id ● Int!
orderRows ● [BatchOrderRowInput]
status ● BatchOrderStatusInput
shipments ● [BatchOrderShipmentInput]
Example
{
"orderRows": [
{}
],
"status": {},
"shipments": [
{
"deliveredAt": "2024-05-03T11:52:33Z"
}
]
}