OBJECT

DeliveryWindowGroup

link GraphQL Schema definition

1type DeliveryWindowGroup {
2id: Int!
3
4name: String!
5
6customOrder: Int!
7
8# Required permission: DeliveryWindow:read
9#
10# All elements are always returned
11#
12# Store restrictions apply.
13#
14# Arguments
15# where: (self-explanatory)
16# sort: (self-explanatory)
17deliveryWindows(where: DeliveryWindowFilter, sort: [DeliveryWindowSort!] = [customOrder_ASC]): [DeliveryWindow!]!
18
19}