Available queries

Associated queryReturns multiple results
AccountManager
AccountManagers✔️

Available fields

LabelTypeNotesNull
changedDateThe date of the account manager's last modification
createdDateThe date of the account manager's creation
emailstringThe email of the account manager✔️
first_namestringThe first name of the account manager
idintegerThe id of the account manager
labelstringThe full name of the account manager. It is automatically generated using the first and last name
last_namestringThe last name of the account manager
phonestringThe phone number of the account manager✔️
userUserA sub-request to the user affiliated to the account manager

Example of a query

query{
  AccountManagers{
    edges{
      node{
        changed
        created
        email
        first_name
        id
        label
        last_name
        phone
        user{
          id
        }
      }
    }
  }
}