This GraphQL query fetches All Users
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
query allUsers { users (skip: 0, limit: 3) { results { ACL authData createdAt email emailVerified id installation { id } nickname updatedAt username } } }
{ "data": { "users": { "results": [ { "ACL": { "*": { "read": true }, "yLiNinXjVT": { "read": true, "write": true } }, "authData": null, "createdAt": "2019-12-11T14:42:19.069Z", "email": "[email protected]", "emailVerified": null, "id": "yLiNinXjVT", "installation": { "id": "HNuqmaxWjE" }, "nickname": "7\"r", "updatedAt": "2019-12-21T03:05:02.242Z", "username": "username1" } ] } } }