Address

(OBJECT)

System-registered postal address. It may be a an invoicing, delivery or company registered address. @see IAddressPoint This is an entity associated with some user or company account for repeated usage

link GraphQL Schema definition

  • type Address implements IAddressPoint {
  • # internal address ID - if address is one of predefined customer's addressess
  • # It allows to reuse one address multiple times. However the same address
  • # may exist under different IDs, either by different customers registering
  • # the same address as 'their own' or by a single customer creating duplicates.
  • id: ID!
  • # company's name incl. legal form
  • company_name: String
  • # person's name
  • name: String
  • # person's surname
  • surname: String
  • # street name
  • street: String
  • # building ID (descriptive number)
  • descriptive_number: String
  • # street number (orientation number)
  • orientation_number: String
  • # name of city/town/municipality
  • city: String
  • # zip code
  • zip: String
  • # state
  • state: String
  • # country
  • country: String
  • # contact e-mail
  • email: Email
  • # contact phone
  • phone: Phone
  • }