Objects
StockType
Represents SKU stock information.
Represents SKU stock information.
type StockType {
totalStock: Int!
inStock: Int!
oversellable: Int!
static: Int
incoming: DateTime @deprecated
shelf: String @deprecated
}
Fields
totalStock ● Int! non-null scalar required
Total number of units available for sale. TotalStock = InStock + OverSellable + Static.
inStock ● Int! non-null scalar required
Number of units currently available in the warehouse.
oversellable ● Int! non-null scalar required
Number of units that can be oversold.
static ● Int scalar
Number of units that are always available for sale. This value is never lowered when goods are sold or increased when goods are returned.
incoming ● DateTime deprecated scalar
Deprecated: Use SkuType.Incoming or VariantType.Incoming instead.
The date when new stock is arriving. (Deprecated: Use SkuType.Incoming or VariantType.Incoming instead)
shelf ● String deprecated scalar
Deprecated: Use SkuType.Shelf or VariantType.Shelf instead.
The shelf identifier for the stock. (Deprecated: Use SkuType.Shelf or VariantType.Shelf instead)
Member Of
ProductType object ● SkuType object ● VariantType object