INPUT_OBJECT

ShippingGroupUpdateInput

link GraphQL Schema definition

1input ShippingGroupUpdateInput {
2
3shippingGroup: ShippingGroupInput!
4
5# Exactly one input field should be provided
6addCountries: [CountryInput!]
7
8# Exactly one input field should be provided
9removeCountries: [CountryInput!]
10
11# Provided ranges override all the ranges existed before
12ranges: ShippingPriceRangeInput
13}