WarehouseStats
Product stock stats for a specific warehouse including all variants
type WarehouseStats {
warehouseId: ID!
quantity: Int!
quantityAllocated: Int!
quantityAvailable: Int!
}
Fields
WarehouseStats.warehouseId ● ID! non-null scalar
Warehouse ID
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