OBJECT

Contact

Contact of the Assignar platform.

link GraphQL Schema definition

  • type Contact {
  • # Unique ID
  • id: Int!
  • # Contact's first name
  • first_name: String!
  • # Contact's last name
  • last_name: String!
  • # Contact name
  • company: String
  • # Contact's job title
  • job_title: String
  • # Contact email address.
  • email: String
  • # Contact's office phone number
  • office_phone: String
  • # Contact's mobile number
  • mobile: String
  • # Contact's address (line 1)
  • address_1: String
  • # Contact's address (line 2)
  • address_2: String
  • # Contact's suburb
  • suburb: String
  • # Contact's state
  • state: String
  • # Contacts postcode
  • postcode: Int
  • # Free text comments.
  • comments: String
  • # Contact external id reference
  • external_id: Int
  • # The categorisation tags on the contact.
  • tags: [Tag]
  • }