OBJECT
DeliveryGroup
link GraphQL Schema definition
1 type DeliveryGroup { 2 : Int! 3 4 # The ID of the delivery group provided by the external allocation system. 5 : String! 6 7 # Required permission: Order:read 8 # 9 # Store restrictions apply. 10 : Order! 11 12 : String! 13 14 # Required permission: ShippingOption:read 15 : ShippingPriceGroup 16 17 : MonetaryValue! 18 19 # Required permission: DeliveryGroup:read 20 # 21 # All elements are always returned 22 : [DeliveryGroupLine!]! 23 24 # Required permission: Order.attributes:read 25 # 26 # All elements are always returned 27 # 28 # Arguments 29 # where: (self-explanatory) 30 (: AssignedAttributeFilter): [Attribute!]! 31 32 }