Allocation
Represents allocation.
type Allocation implements Node {
id: ID!
quantity: Int!
warehouse: Warehouse!
}
Fields
Allocation.id
● ID!
non-null scalar miscellaneous
The ID of allocation.
Allocation.quantity
● Int!
non-null scalar miscellaneous
Quantity allocated for orders.
Allocation.warehouse
● Warehouse!
non-null object products
The warehouse were items were allocated.
Interfaces
Node
interface miscellaneous
An object with an ID
Member Of
OrderLine
object