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
query allUsers { users (skip: 0, limit: 3) { results { ACL authData avatar { url name } createdAt email emailVerified fullName id isReported updatedAt username } } }
{ "data": { "users": { "results": [ { "ACL": { "*": { "read": true }, "fq63rBDrDp": { "read": true, "write": true } }, "authData": null, "avatar": { "url": "https://parsefiles.back4app.com/Jtko9o7VPlxOWsQPatDTJx2xM8XETwj0nzh1j3ec/b5edaa343d20b1485414e164286b9924_avatar.jpg", "name": "b5edaa343d20b1485414e164286b9924_avatar.jpg" }, "createdAt": "2016-05-03T12:48:44.835Z", "email": null, "emailVerified": null, "fullName": null, "id": "fq63rBDrDp", "isReported": null, "updatedAt": "2019-12-21T03:02:58.541Z", "username": "username10" }, { "ACL": { "*": { "read": true }, "BvBcFuo55r": { "read": true, "write": true } }, "authData": null, "avatar": { "url": "https://parsefiles.back4app.com/Jtko9o7VPlxOWsQPatDTJx2xM8XETwj0nzh1j3ec/2110b9ad67f3f489b8292e33ebb8e778_avatar.jpg", "name": "2110b9ad67f3f489b8292e33ebb8e778_avatar.jpg" }, "createdAt": "2018-07-30T05:23:45.888Z", "email": null, "emailVerified": null, "fullName": null, "id": "BvBcFuo55r", "isReported": null, "updatedAt": "2019-12-21T03:02:58.541Z", "username": "username2" }, { "ACL": { "*": { "read": true }, "HQo4J85lsJ": { "read": true, "write": true } }, "authData": null, "avatar": { "url": "https://parsefiles.back4app.com/Jtko9o7VPlxOWsQPatDTJx2xM8XETwj0nzh1j3ec/48afd3664bab5fdc49010a22fc7d4eb1_avatar.jpg", "name": "48afd3664bab5fdc49010a22fc7d4eb1_avatar.jpg" }, "createdAt": "2018-08-18T07:49:37.640Z", "email": null, "emailVerified": false, "fullName": null, "id": "HQo4J85lsJ", "isReported": null, "updatedAt": "2019-12-21T03:02:58.541Z", "username": "username5" } ] } } }