INPUT_OBJECT

DeliveryWindowCreateInput

link GraphQL Schema definition

1input DeliveryWindowCreateInput {
2
3name: String!
4
5status: Status!
6
7deliveryDatesVisible: Boolean!
8
9selectableByBuyers: Boolean!
10
11selectedByDefault: Boolean!
12
13defaultVariantDeliveryType: ProductVariantDeliveryType!
14
15allocationRule: AllocationRuleInput
16
17# Exactly one input field should be provided
18markets: [MarketInput!]
19
20# Specify if you want a pre-order delivery window, having a fixed date range for sales and for delivery
21preorder: PreorderDeliveryWindowInput
22
23# Specify if you want an at-once delivery window, where stock is available now or withing N days
24atOnce: AtOnceDeliveryWindowInput
25
26# Assign an external ID to reference this object by it later
27externalId: String
28
29# Assign group to delivery window
30#
31# Exactly one input field should be provided
32deliveryWindowGroup: DeliveryWindowGroupInput
33}

link Required by