INPUT_OBJECT

AddressInput

Represents the address of an entity.

link GraphQL Schema definition

  • input AddressInput {
  • # A street address.
  • address: String
  • # The name of the city, district, village, or town of the address.
  • city: String
  • # The zip or postal code of the address.
  • postalCode: String
  • # The province, state, or district of the address as defined in ISO 3166-1
  • # alpha-2.
  • stateCode: String
  • # The country of the address.
  • countryCode: CountryCode
  • # (Optional) An address's address type
  • addressType: AddressType
  • }