This GraphQL query fetches All Users
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allUsers { users (skip: 0, limit: 3) { results { ACL authData createdAt email emailVerified id updatedAt username } } }
{ "data": { "users": { "results": [ { "ACL": { "*": { "read": true }, "afRWg1XLWM": { "read": true, "write": true } }, "authData": null, "createdAt": "2020-04-03T13:10:49.916Z", "email": null, "emailVerified": null, "id": "afRWg1XLWM", "updatedAt": "2020-04-03T14:12:04.341Z", "username": "username1" } ] } } }