INPUT_OBJECT

PricelistCreateInput

link GraphQL Schema definition

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

link Required by