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 }, "1fU381CSbx": { "read": true, "write": true } }, "authData": null, "createdAt": "2018-07-17T14:54:07.187Z", "email": "[email protected]", "emailVerified": null, "id": "1fU381CSbx", "updatedAt": "2019-12-21T03:04:20.049Z", "username": "username2" }, { "ACL": { "*": { "read": true }, "bb30wrOGyB": { "read": true, "write": true } }, "authData": null, "createdAt": "2018-07-17T15:47:12.082Z", "email": "[email protected]", "emailVerified": null, "id": "bb30wrOGyB", "updatedAt": "2019-12-21T03:04:20.626Z", "username": "username74" }, { "ACL": { "*": { "read": true }, "uGjszNDpeK": { "read": true, "write": true } }, "authData": null, "createdAt": "2018-07-17T20:59:25.416Z", "email": "[email protected]", "emailVerified": null, "id": "uGjszNDpeK", "updatedAt": "2019-12-21T03:04:21.091Z", "username": "username116" } ] } } }