ShippingZoneCreateInput
No description
input ShippingZoneCreateInput {
  name: String
  description: String
  countries: [String!]
  default: Boolean
  addWarehouses: [ID!]
  addChannels: [ID!]
}
Fields
ShippingZoneCreateInput.name ● String scalar miscellaneous
Shipping zone's name. Visible only to the staff.
ShippingZoneCreateInput.description ● String scalar miscellaneous
Description of the shipping zone.
ShippingZoneCreateInput.countries ● [String!] list scalar miscellaneous
List of countries in this shipping zone.
ShippingZoneCreateInput.default ● Boolean scalar miscellaneous
Default shipping zone will be used for countries not covered by other zones.
ShippingZoneCreateInput.addWarehouses ● [ID!] list scalar miscellaneous
List of warehouses to assign to a shipping zone
ShippingZoneCreateInput.addChannels ● [ID!] list scalar miscellaneous
List of channels to assign to the shipping zone.
Member Of
shippingZoneCreate mutation