INPUT_OBJECT

OrderUnallocateInput

link GraphQL Schema definition

1input OrderUnallocateInput {
2
3# Exactly one input field should be provided
4order: OrderInput!
5
6# You may specify, which warehouse(s) should be unallocated.
7# If not given, stock from all warehouses used for this order will be unallocated.
8#
9# Exactly one input field should be provided
10warehouses: [WarehouseInput!]
11
12# Leave empty to unallocate the whole order
13unallocate: [OrderLineUnallocateInput!]
14
15# Decide what should happen to the stock by filling one of the three options
16#
17# Exactly one input field should be provided
18stockActionPolicy: StockPolicyActionInput!
19
20comment: String
21}

link Required by