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 aboutMe authData avatar { url name } createdAt email emailVerified fullName id isReported job reportMessage updatedAt username } } }
{ "data": { "users": { "results": [ { "ACL": null, "aboutMe": "lorem ipsec dolor sit ", "authData": null, "avatar": { "url": "https://parsefiles.back4app.com/S2EbHoPzvj1flaJSoqnIqaeBgzzbGFkKcWCboPFW/7fc99b7ffb55cf22e83958094b0a1437_avatar.jpg", "name": "7fc99b7ffb55cf22e83958094b0a1437_avatar.jpg" }, "createdAt": "2016-01-11T07:17:34.021Z", "email": "[email protected]", "emailVerified": null, "fullName": "Full Name 1", "id": "05w2fPCSUP", "isReported": false, "job": "iOS developer", "reportMessage": null, "updatedAt": "2019-12-21T03:04:33.296Z", "username": "username1" }, { "ACL": null, "aboutMe": "Something about me here...", "authData": null, "avatar": { "url": "https://parsefiles.back4app.com/S2EbHoPzvj1flaJSoqnIqaeBgzzbGFkKcWCboPFW/087b72a0f01d3232e31f80cf9f65d754_nice-smile3.jpg", "name": "087b72a0f01d3232e31f80cf9f65d754_nice-smile3.jpg" }, "createdAt": "2016-01-11T08:15:34.754Z", "email": "[email protected]", "emailVerified": null, "fullName": "Full Name 117", "id": "yFSxZcz7HB", "isReported": false, "job": "engineer", "reportMessage": null, "updatedAt": "2019-12-21T03:04:34.640Z", "username": "username117" }, { "ACL": null, "aboutMe": "Something about me here, not a long story but something funny :)", "authData": null, "avatar": { "url": "https://parsefiles.back4app.com/S2EbHoPzvj1flaJSoqnIqaeBgzzbGFkKcWCboPFW/5293c59d46522438835b010c76f02643_male4.jpg", "name": "5293c59d46522438835b010c76f02643_male4.jpg" }, "createdAt": "2016-01-11T08:22:50.262Z", "email": "[email protected]", "emailVerified": null, "fullName": "Full Name 50", "id": "U0tN1iyNCF", "isReported": false, "job": "engineer", "reportMessage": null, "updatedAt": "2019-12-21T03:04:33.781Z", "username": "username50" } ] } } }