User

Fetch your data

User queries allow us to receive all the data of the authenticated user.

query getUser {
  user {
    UUID
    email
    createdAt
    userType
    actionMonthlyCap
    counterActionsCurrentMonth
  }
}

Please note that with this query you can retrieve actionMonthlyCap and counterActionsCurrentMonth. Please refer to the user section of this guide to understand the meaning of these fields.

Last updated