This GraphQL query fetches All Users
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
query allUsers { users (skip: 0, limit: 3) { results { ACL authData avatar { url name } createdAt email emailVerified id isReported updatedAt username } } }
{ "data": { "users": { "results": [ { "ACL": { "*": { "read": true }, "CHOOoQ1qce": { "read": true, "write": true } }, "authData": null, "avatar": { "url": "https://parsefiles.back4app.com/iwPSO7GmLksEKljkepcaGp3QUaSUUMCEgLzTpakV/1d01720afb82f23fb63f6314e4940192_avatar.jpg", "name": "1d01720afb82f23fb63f6314e4940192_avatar.jpg" }, "createdAt": "2019-01-27T14:55:29.540Z", "email": "[email protected]", "emailVerified": null, "id": "CHOOoQ1qce", "isReported": false, "updatedAt": "2019-12-21T03:07:08.038Z", "username": "username25" }, { "ACL": { "*": { "read": true }, "FqDYyXQj9u": { "read": true, "write": true } }, "authData": null, "avatar": { "url": "https://parsefiles.back4app.com/iwPSO7GmLksEKljkepcaGp3QUaSUUMCEgLzTpakV/132be0dde0b375bacbd94c27a2d9c3c2_image.jpg", "name": "132be0dde0b375bacbd94c27a2d9c3c2_image.jpg" }, "createdAt": "2019-02-01T00:44:19.451Z", "email": "[email protected]", "emailVerified": null, "id": "FqDYyXQj9u", "isReported": false, "updatedAt": "2019-12-21T03:07:08.038Z", "username": "username36" }, { "ACL": { "*": { "read": true }, "Cuj1e5VqnJ": { "read": true, "write": true } }, "authData": null, "avatar": { "url": "https://parsefiles.back4app.com/iwPSO7GmLksEKljkepcaGp3QUaSUUMCEgLzTpakV/db5cff598bfacb70e0423017f1bae62e_avatar.jpg", "name": "db5cff598bfacb70e0423017f1bae62e_avatar.jpg" }, "createdAt": "2019-01-21T19:54:16.126Z", "email": "[email protected]", "emailVerified": null, "id": "Cuj1e5VqnJ", "isReported": false, "updatedAt": "2019-12-21T03:07:08.038Z", "username": "username27" } ] } } }