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 }, "AUiOOqPtBA": { "read": true, "write": true } }, "authData": null, "createdAt": "2018-06-26T06:54:58.403Z", "email": "[email protected]", "emailVerified": null, "id": "AUiOOqPtBA", "updatedAt": "2019-12-21T02:38:35.607Z", "username": "username7" }, { "ACL": { "*": { "read": true }, "OleRw0q3cy": { "read": true, "write": true } }, "authData": null, "createdAt": "2016-05-04T08:39:43.923Z", "email": "[email protected]", "emailVerified": null, "id": "OleRw0q3cy", "updatedAt": "2019-12-21T02:38:35.608Z", "username": "username17" }, { "ACL": { "*": { "read": true }, "lbDsA0Cv9o": { "read": true, "write": true } }, "authData": null, "createdAt": "2017-05-26T08:19:28.155Z", "email": "[email protected]", "emailVerified": null, "id": "lbDsA0Cv9o", "updatedAt": "2019-12-21T02:38:35.821Z", "username": "username30" } ] } } }