UpdatePriceListInput
Provides the fields and values to use when updating a price list.
input UpdatePriceListInput {
id: ID!
name: String
currency: CurrencyCode
isDefault: Boolean
}
Fields
UpdatePriceListInput.id
● ID!
non-null scalar
Specifies the price list to update.
UpdatePriceListInput.name
● String
scalar
The price list's name.
UpdatePriceListInput.currency
● CurrencyCode
enum
The price list's currency.
UpdatePriceListInput.isDefault
● Boolean
scalar
Whether this price list is the default.
Member Of
updatePriceList
mutation