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 }, "sWitzpQbr6": { "read": true, "write": true } }, "authData": null, "createdAt": "2017-07-17T12:32:23.070Z", "email": null, "emailVerified": null, "id": "sWitzpQbr6", "updatedAt": "2019-12-21T03:08:43.597Z", "username": "username10" }, { "ACL": { "*": { "read": true }, "wt2Z2iGPH7": { "read": true, "write": true } }, "authData": null, "createdAt": "2019-08-21T06:17:55.519Z", "email": null, "emailVerified": null, "id": "wt2Z2iGPH7", "updatedAt": "2019-12-21T03:08:43.597Z", "username": "username11" }, { "ACL": { "*": { "read": true }, "A91Lv0N0Ho": { "read": true, "write": true } }, "authData": null, "createdAt": "2019-09-04T11:10:45.975Z", "email": null, "emailVerified": null, "id": "A91Lv0N0Ho", "updatedAt": "2019-12-21T03:08:43.597Z", "username": "username2" } ] } } }