Stock
Represents stock.
type Stock implements Node {
id: ID!
warehouse: Warehouse!
productVariant: ProductVariant!
quantity: Int!
quantityAllocated: Int!
quantityReserved: Int!
}
Fields
Stock.id ● ID! non-null scalar
Stock.warehouse ● Warehouse! non-null object
Stock.productVariant ● ProductVariant! non-null object
Stock.quantity ● Int! non-null scalar
Quantity of a product in the warehouse's possession, including the allocated stock that is waiting for shipment.
Stock.quantityAllocated ● Int! non-null scalar
Quantity allocated for orders.
Stock.quantityReserved ● Int! non-null scalar
Quantity reserved for checkouts.
Interfaces
Node interface
An object with an ID
Returned by
stock query
Member of
ProductVariant object ● StockBulkResult object ● StockCountableEdge object
Was this page helpful?