Interface

Contacts is an interface, implemented by the following types:

EntityType name
CustomerscustomerType
EmployeesemployeeType
SupplierssupplierType

Available queries

Associated queryReturns multiple results
Contact
Contacts✔️

Available fields

LabelTypeNotesNull
idintegerThe id of this contact
labelstringThe contact's label
typestringThe type of the contact ("customer", "employee", or "supplier")

Example of a query

query{
  Contacts{
    edges{
      node{
        id
        label
        type
        ... on customerType {
          customer_id
        }
        ... on employeeType {
          employee_id
        }
        ... on supplierType {
          supplier_id
        }
      }
    }
  }
}