mutation {
createInventoryCollectionMovement(
input: {
handler: "order_fulfillment",
data: {
"order_reference": "ORD-12345",
"customer_id": "cust-456",
"priority": "high"
},
collection: [
{
handler: "pick",
fromID: "warehouse-main",
toID: "packing-station-1",
itemID: "item-123",
quantity: 2,
data: {
"bin_location": "A1-B2"
}
},
{
handler: "pick",
fromID: "warehouse-main",
toID: "packing-station-1",
itemID: "item-456",
quantity: 3,
data: {
"bin_location": "C3-D4"
}
},
{
handler: "pack",
fromID: "packing-station-1",
toID: "shipping-area",
data: {
"package_type": "box",
"package_dimensions": "30x20x15"
}
}
]
}
) {
id
movements {
id
movementType
}
}
}