OBJECT

Address

All information necessary for a complete address.

link GraphQL Schema definition

  • type Address implements Node {
  • # Building number, unit number (optional), and street
  • address: String!
  • city: String!
  • country: Country!
  • # Full address of the seller
  • fullAddress: String!
  • id: ID!
  • # Latitude of an address.
  • lat: Float
  • # Longitude of an address.
  • lng: Float
  • # Latitude and longitude of the seller
  • location: String
  • # Url showing the location of the seller on google maps
  • mapUrl: String
  • # Also known as 'zip code'.
  • postcode: String!
  • state: State
  • # Second line for address info. Sometimes used for apartment number or something
  • # similar
  • subaddress: String
  • }