ProductStockLocationConfiguration
Per-stock-location configuration for a single product. One row per product and stock location (a bin location, or the warehouse-level "unknown" location for stock not assigned to a bin location), storing the product's reorder thresholds at that location.
type ProductStockLocationConfiguration implements Node {
id: ID!
reorderPoint: Int!
targetMaximumQuantity: Int
stockBelowReorderPoint: Int
}
Fields
ProductStockLocationConfiguration.id ● ID! non-null scalar
Global identifier for this entity.
ProductStockLocationConfiguration.reorderPoint ● Int! non-null scalar
Stock level at or below which the product is considered to need reordering at this stock location.
ProductStockLocationConfiguration.targetMaximumQuantity ● Int scalar
Target maximum stock quantity used as the replenish-to level for this product at this stock location, or null when none is set.
ProductStockLocationConfiguration.stockBelowReorderPoint ● Int scalar
Derived amount by which the current stock at this location falls below reorderPoint (kept up to date by the stock indexers). Non-positive when stock is at or above the reorder point.
Interfaces
Node interface
Any entity that can be loaded by its global id through the node(id: ID!) query.
Returned By
productStockLocationConfiguration query ● setProductStockLocationReorderConfiguration mutation