INPUT_OBJECT

CountryInput

Input for associating a country with an address. One argument is required for creation. If more than one argument is given, the first valid argument will define the country (the order is "id" then "code").

link GraphQL Schema definition

  • input CountryInput {
  • # Two-letter abbreviation of the country name.
  • code: String
  • # Database ID for the given country.
  • id: ID
  • }