WarehouseItemAvailability
Inventory availability for a single order item at a specific warehouse.
type WarehouseItemAvailability {
available: Int! @deprecated
availableToAllocate: Int!
availableToMake: Int!
components: [ProductComponentAvailability!]!
ordered: Int!
quantityOnFulfillment: Int!
unallocated: Int!
warehouseId: ID!
}
Fields
WarehouseItemAvailability.available ● Int! deprecated non-null scalar common
DEPRECATED
Use availableToAllocate instead.
Unallocated inventory net of quantity on order at this warehouse (never negative).
WarehouseItemAvailability.availableToAllocate ● Int! non-null scalar common
Available inventory plus available-to-make inventory at this warehouse.
WarehouseItemAvailability.availableToMake ● Int! non-null scalar common
Available-to-make inventory at this warehouse.
WarehouseItemAvailability.components ● [ProductComponentAvailability!]! non-null object common
Warehouse-scoped component availability for composable products.
WarehouseItemAvailability.ordered ● Int! non-null scalar common
Quantity on order (pending/ordered/on_hold) at this warehouse.
WarehouseItemAvailability.quantityOnFulfillment ● Int! non-null scalar common
Quantity already assigned to fulfillments for this order at this warehouse.
WarehouseItemAvailability.unallocated ● Int! non-null scalar common
In-stock inventory not yet allocated at this warehouse (pre-built units).
WarehouseItemAvailability.warehouseId ● ID! non-null scalar common
The warehouse ID.
Member Of
OrderItemInventory object