OBJECT

DeliveryGroupLine

link GraphQL Schema definition

1type DeliveryGroupLine {
2# The current quantity for the delivery group line, excluding cancelled units
3quantity: Int!
4
5cancelledQuantity: Int!
6
7# Required permission: Order:read
8#
9# Store restrictions apply.
10orderLine: OrderLine!
11
12}