##Interface
Contacts is an interface, implemented by the following types:
##Available queries
| Associated query | Returns multiple results | 
|---|---|
| Contact | |
| Contacts | ✔️ | 
#Available fields
| Label | Type | Notes | Null | 
|---|---|---|---|
| id | integer | The id of this contact | |
| label | string | The contact's label | |
| type | string | The 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
        }
      }
    }
  }
}
