WarehouseStats
Product stock statistics for a specific warehouse
type WarehouseStats {
warehouseId: ID!
quantity: Int!
quantityAllocated: Int!
quantityAvailable: Int!
}
Fields
WarehouseStats.warehouseId ● ID! non-null scalar
Global ID of the warehouse.
WarehouseStats.quantity ● Int! non-null scalar
Total quantity of variants stocks associated with the warehouse (including allocated).
WarehouseStats.quantityAllocated ● Int! non-null scalar
Quantity of variants stocks at the warehouse that has been allocated to orders.
WarehouseStats.quantityAvailable ● Int! non-null scalar
Quantity of variants stocks at the warehouse that is available for purchase.
Member Of
Product object