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
19
20
21
query allUsers { users (skip: 0, limit: 3) { results { ACL authData createdAt email emailVerified id installation { id } nickname photo { url name } updatedAt username } } }
{ "data": { "users": { "results": [ { "ACL": { "*": { "read": true }, "B0CzHbqfs0": { "read": true, "write": true } }, "authData": null, "createdAt": "2019-11-23T17:15:35.624Z", "email": "[email protected]", "emailVerified": null, "id": "B0CzHbqfs0", "installation": { "id": "VX3lfotG5H" }, "nickname": "Morgan", "photo": { "url": "https://parsefiles.back4app.com/sGBkd3WcmuBcVkQr5S9Tm1oYdvVAN5XXLGcN5xg1/58418af7cf61c5806173d131387e8051_userpicture.png", "name": "58418af7cf61c5806173d131387e8051_userpicture.png" }, "updatedAt": "2020-02-28T17:48:33.934Z", "username": "username1" }, { "ACL": { "*": { "read": true }, "c9nA7Kr0JQ": { "read": true, "write": true } }, "authData": null, "createdAt": "2019-11-24T00:09:22.133Z", "email": "[email protected]", "emailVerified": null, "id": "c9nA7Kr0JQ", "installation": { "id": "309c17QNOZ" }, "nickname": "Darken", "photo": { "url": "https://parsefiles.back4app.com/sGBkd3WcmuBcVkQr5S9Tm1oYdvVAN5XXLGcN5xg1/f36b20c4ed0315e4b7205ccd24ec896f_userpicture.png", "name": "f36b20c4ed0315e4b7205ccd24ec896f_userpicture.png" }, "updatedAt": "2020-02-28T17:48:33.934Z", "username": "username6" }, { "ACL": { "*": { "read": true }, "SvfpRAClaP": { "read": true, "write": true } }, "authData": null, "createdAt": "2019-12-02T21:53:06.168Z", "email": "[email protected]", "emailVerified": null, "id": "SvfpRAClaP", "installation": null, "nickname": ".&8", "photo": { "url": "https://parsefiles.back4app.com/sGBkd3WcmuBcVkQr5S9Tm1oYdvVAN5XXLGcN5xg1/28726550b9561e07277d2741d009976a_userpicture.png", "name": "28726550b9561e07277d2741d009976a_userpicture.png" }, "updatedAt": "2020-02-28T17:48:33.934Z", "username": "username3" } ] } } }