INPUT_OBJECT

AddressInput

The address input type.

link GraphQL Schema definition

  • input AddressInput {
  • # The addition part of the address.
  • addition: String
  • # The box part of the address.
  • box: String
  • # The city name.
  • city: String
  • # The 2-letter country code as defined by
  • # https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
  • country: CountryCode
  • # The geolocation information expressed in latitude and longitude.
  • geo: GeoInput
  • # The street number.
  • number: String
  • # The postal code.
  • postal_code: String
  • # The street name.
  • street: String
  • # The secondary address.
  • street_2: String
  • }