ChannelCreateInput Input Type
No description
input ChannelCreateInput {
isActive: Boolean
stockSettings: StockSettingsInput
addShippingZones: [ID!]
addWarehouses: [ID!]
orderSettings: OrderSettingsInput
metadata: [MetadataInput!]
privateMetadata: [MetadataInput!]
checkoutSettings: CheckoutSettingsInput
paymentSettings: PaymentSettingsInput
name: String!
slug: String!
currencyCode: String!
defaultCountry: CountryCode!
}
Fields
ChannelCreateInput.isActive
● Boolean
scalar miscellaneous
Determine if channel will be set active or not.
ChannelCreateInput.stockSettings
● StockSettingsInput
input products
The channel stock settings.
ChannelCreateInput.addShippingZones
● [ID!]
list scalar miscellaneous
List of shipping zones to assign to the channel.
ChannelCreateInput.addWarehouses
● [ID!]
list scalar miscellaneous
List of warehouses to assign to the channel.
ChannelCreateInput.orderSettings
● OrderSettingsInput
input orders
The channel order settings
ChannelCreateInput.metadata
● [MetadataInput!]
list input miscellaneous
Channel public metadata.
ChannelCreateInput.privateMetadata
● [MetadataInput!]
list input miscellaneous
Channel private metadata.
ChannelCreateInput.checkoutSettings
● CheckoutSettingsInput
input checkout
The channel checkout settings
ChannelCreateInput.paymentSettings
● PaymentSettingsInput
input payments
The channel payment settings
ChannelCreateInput.name
● String!
non-null scalar miscellaneous
Name of the channel.
ChannelCreateInput.slug
● String!
non-null scalar miscellaneous
Slug of the channel.
ChannelCreateInput.currencyCode
● String!
non-null scalar miscellaneous
Currency of the channel.
ChannelCreateInput.defaultCountry
● CountryCode!
non-null 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.
Member Of
channelCreate
mutation