Employees implement the Contacts interface.
Associated query | Returns multiple results |
---|
Employee | |
Employees | ✔️ |
Label | Type | Notes | Null |
---|
active | integer | Indicates if the employee is active | |
address | Postal Address | The employee's address | ✔️ |
changed | Date | The date of the employee's last modification | |
created | Date | The date of the employee's creation | |
email | string | The employee's email | ✔️ |
employee_id | string | The employee's id string, not the machine id | |
first_name | string | The employee's first name | |
id | integer | The employee's id integer, not the employee's id string | |
label | string | The employee's label, automatically generated by combining the first and last name | |
last_name | string | The employee's last name | |
notes | string | Notes about the employee | ✔️ |
phone | string | The employee's phone number | ✔️ |
position | string | The employee's position | ✔️ |
user | User | The user who created the employee | |
work_for | Contact | The contact this employee works for | ✔️ |
query{
Employees{
edges{
node{
active
address{
country
}
changed
created
email
employee_id
first_name
id
label
last_name
notes
phone
position
user{
id
}
work_for{
id
... on customerType {
customer_id
}
... on supplierType {
label
}
}
}
}
}
}