INPUT_OBJECT

PricelistUpdateInput

link GraphQL Schema definition

1input PricelistUpdateInput {
2
3name: String
4
5status: Status
6
7comment: String
8
9currencyIsoCode: String
10
11defaultShippingOption: ShippingOptionInput
12
13# Countries are accepted only for DIRECT_TO_CONSUMER pricelists.
14addCountries: [CountryInput!]
15
16removeCountries: [CountryInput!]
17
18# Assign an external ID to reference this object by it later
19externalId: String
20}

link Required by