ChannelUpdateInput Input Type
No description
input ChannelUpdateInput {
isActive: Boolean
stockSettings: StockSettingsInput
addShippingZones: [ID!]
addWarehouses: [ID!]
orderSettings: OrderSettingsInput
metadata: [MetadataInput!]
privateMetadata: [MetadataInput!]
checkoutSettings: CheckoutSettingsInput
paymentSettings: PaymentSettingsInput
name: String
slug: String
defaultCountry: CountryCode
removeShippingZones: [ID!]
removeWarehouses: [ID!]
}
Fields
ChannelUpdateInput.isActive
● Boolean
scalar miscellaneous
Determine if channel will be set active or not.
ChannelUpdateInput.stockSettings
● StockSettingsInput
input products
The channel stock settings.
ChannelUpdateInput.addShippingZones
● [ID!]
list scalar miscellaneous
List of shipping zones to assign to the channel.
ChannelUpdateInput.addWarehouses
● [ID!]
list scalar miscellaneous
List of warehouses to assign to the channel.
ChannelUpdateInput.orderSettings
● OrderSettingsInput
input orders
The channel order settings
ChannelUpdateInput.metadata
● [MetadataInput!]
list input miscellaneous
Channel public metadata.
ChannelUpdateInput.privateMetadata
● [MetadataInput!]
list input miscellaneous
Channel private metadata.
ChannelUpdateInput.checkoutSettings
● CheckoutSettingsInput
input checkout
The channel checkout settings
ChannelUpdateInput.paymentSettings
● PaymentSettingsInput
input payments
The channel payment settings
ChannelUpdateInput.name
● String
scalar miscellaneous
Name of the channel.
ChannelUpdateInput.slug
● String
scalar miscellaneous
Slug of the channel.
ChannelUpdateInput.defaultCountry
● CountryCode
enum miscellaneous
Default country for the channel. Default country can be used in checkout to determine the stock quantities or calculate taxes when the country was not explicitly provided.
ChannelUpdateInput.removeShippingZones
● [ID!]
list scalar miscellaneous
List of shipping zones to unassign from the channel.
ChannelUpdateInput.removeWarehouses
● [ID!]
list scalar miscellaneous
List of warehouses to unassign from the channel.
Member Of
channelUpdate
mutation