Stock Object
Represents stock.
type Stock implements Node {
id: ID!
warehouse: Warehouse!
productVariant: ProductVariant!
quantity: Int!
quantityAllocated: Int!
quantityReserved: Int!
}
Fields
id ● ID!
The ID of stock.
warehouse ● Warehouse!
The warehouse associated with the stock.
productVariant ● ProductVariant!
Information about the product variant.
quantity ● Int!
Quantity of a product in the warehouse's possession, including the allocated stock that is waiting for shipment.
quantityAllocated ● Int!
Quantity allocated for orders.
quantityReserved ● Int!
Quantity reserved for checkouts.
Interfaces
Node
An object with an ID
Returned By
stock query
Member Of
ProductVariant object ● StockBulkResult object ● StockCountableEdge object