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
8orderLine: OrderLine!
9
10}