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
22
query allUsers { users (skip: 0, limit: 3) { results { ACL about authData avatar { url name } createdAt email emailVerified fullName id isReported location reportMessage updatedAt username } } }
{ "data": { "users": { "results": [ { "ACL": { "*": { "read": true }, "oh8VGnrC4A": { "read": true, "write": true } }, "about": "iOS Developer, freelancer", "authData": null, "avatar": { "url": "https://parsefiles.back4app.com/O3RAzAPKKC0WXbeUqmPDFUG5BAAOPBhdDMEOqEwD/23cbb436c73d672bd315e48862a7c0ad_avatar.jpg", "name": "23cbb436c73d672bd315e48862a7c0ad_avatar.jpg" }, "createdAt": "2016-12-29T11:00:53.486Z", "email": "[email protected]", "emailVerified": null, "fullName": "Full Name 54", "id": "oh8VGnrC4A", "isReported": false, "location": "New York, USA", "reportMessage": null, "updatedAt": "2019-12-21T03:04:09.663Z", "username": "username54" }, { "ACL": { "*": { "read": true }, "klvwLzbZHC": { "read": true, "write": true } }, "about": "UI UX designer at Apply Inc.", "authData": null, "avatar": { "url": "https://parsefiles.back4app.com/O3RAzAPKKC0WXbeUqmPDFUG5BAAOPBhdDMEOqEwD/fb357b3da283210f0cc9d2f01bb39265_d0228a04df01fdbe2e7c6d8e0b597af0.jpg", "name": "fb357b3da283210f0cc9d2f01bb39265_d0228a04df01fdbe2e7c6d8e0b597af0.jpg" }, "createdAt": "2016-12-30T07:44:10.498Z", "email": "[email protected]", "emailVerified": null, "fullName": "Full Name 52", "id": "klvwLzbZHC", "isReported": false, "location": "Melbourne, AU", "reportMessage": null, "updatedAt": "2019-12-21T03:04:09.663Z", "username": "username52" }, { "ACL": { "*": { "read": true }, "86q02Cwpof": { "read": true, "write": true } }, "about": "iOS and Android app developer", "authData": null, "avatar": { "url": "https://parsefiles.back4app.com/O3RAzAPKKC0WXbeUqmPDFUG5BAAOPBhdDMEOqEwD/02c3a44e567703cf72f53300a787be54_avatar.jpg", "name": "02c3a44e567703cf72f53300a787be54_avatar.jpg" }, "createdAt": "2017-01-24T08:48:15.035Z", "email": "[email protected]", "emailVerified": null, "fullName": "Full Name 6", "id": "86q02Cwpof", "isReported": false, "location": "San Marino,San Marino", "reportMessage": null, "updatedAt": "2019-12-21T03:04:09.156Z", "username": "username5" } ] } } }