OBJECT

DeliveryGroup

link GraphQL Schema definition

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