OBJECT

Address

This is an address object that stores detailed information about an individual address.

link GraphQL Schema definition

  • type Address {
  • # The primary street and number of the address
  • streetAddress: String
  • # Additional information about the address
  • extendedAddress: String
  • # The postal- or ZIP code
  • postalCode: String
  • # The city or town where the address is situated
  • locality: String
  • # The country of residence
  • country: Country
  • }