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