INPUT_OBJECT

AddressInput

Input attributes for creating or updating an address.

link GraphQL Schema definition

  • input AddressInput {
  • # Building number, unit number, and street. Required for creation.
  • address: String
  • # Required for creation.
  • city: String
  • # An identifying value for looking up the relevant country. Can be a DB ID or
  • # two-character country abbreviation. Defaults to the sites home country.
  • country: CountryInput
  • # Required for update.
  • id: ID
  • # Required for creation.
  • postcode: String
  • # Required for creation.
  • state: StateInput
  • # Second line for address info. Sometimes used for apartment number or something
  • # similar. Required for creation.
  • subaddress: String
  • }