INPUT_OBJECT

ShippingOptionUpdateInput

link GraphQL Schema definition

1input ShippingOptionUpdateInput {
2
3name: String
4
5status: Status
6
7comment: String
8
9currencyIsoCode: String
10
11uri: String
12
13isPickupPoint: Boolean
14
15addStores: [StoreInput!]
16
17removeStores: [StoreInput!]
18
19# Exactly one input field should be provided
20addMarkets: [MarketInput!]
21
22# Exactly one input field should be provided
23removeMarkets: [MarketInput!]
24
25addShippingGroups: [ShippingGroupAddInput!]
26
27updateShippingGroups: [ShippingGroupUpdateInput!]
28
29deleteShippingGroups: [ShippingGroupInput!]
30}

link Required by