INPUT_OBJECT

DeliveryWindowUpdateInput

link GraphQL Schema definition

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

link Required by