Available queries

Associated queryReturns multiple results
User
Users✔️

Available fields

LabelTypeNotesNull
account_managerAccount ManagerThe account manager linked to this user✔️
customerCustomerThe customers of this user✔️
display_namestringThe name displayed for this user✔️
emailstringThe email of the user✔️
first_namestringThe user's first name✔️
idintegerThe user's id
labelstringThe user's label, which is automatically made of the user's first and last names
last_namestringThe user's last name✔️
locationLocationThe user's location
phonestringThe user's phone number✔️
selling_price_levelPrice LevelThe price levels applied to this user, their type must be "selling"✔️
taxesTaxesThe taxes applied to the user✔️
tax_typestringThe type of the taxes applied to the user✔️

Example of a query

query{
  Users{
    edges{
      node{
        account_manager{
          id
        }
        customer{
          id
        }
        display_name
        email
        first_name
        id
        label
        last_name
        location{
          id
        }
        phone
        selling_price_level{
          id
        }
        taxes{
            edges{
                node{
                    id
                }
            }
        }
        tax_type
      }
    }
  }
}