CheckoutLineProblemInsufficientStock Object
Indicates insufficient stock for a given checkout line.Placing the order will not be possible until solving this problem.
type CheckoutLineProblemInsufficientStock {
availableQuantity: Int
line: CheckoutLine!
variant: ProductVariant!
}
Fields
availableQuantity ● Int
Available quantity of a variant.
line ● CheckoutLine!
The line that has variant with insufficient stock.
variant ● ProductVariant!
The variant with insufficient stock.
Implemented By
CheckoutLineProblem union ● CheckoutProblem union