Search
⌃K

User

Fetch your data
User queries allow us to receive all the data of the authenticated user.
Query
Response
query getUser {
user {
UUID
email
createdAt
userType
actionMonthlyCap
counterActionsCurrentMonth
}
}
{
"data": {
"user": {
"UUID": "45c3de19-d6cd-43b6-8549-08762efa4199",
"email": "[email protected]",
"createdAt": "2019-12-04 18:31:54.582739+00",
"userType": "STANDARD",
"actionMonthlyCap": 30000,
"counterActionsCurrentMonth": 1120
}
}
}
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.