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
23
24
25
26
27
28
29
30
31
32
33
34
35
query allUsers { users (skip: 0, limit: 3) { results { ACL about authData avatar { url name } createdAt email emailVerified fullName fullNameLowercase { ...on Element { value } } hasBlocked { ...on Element { value } } id location { latitude longitude } phone phoneNo updatedAt username } } }
{ "data": { "users": { "results": [ { "ACL": { "*": { "read": true }, "5uHVYJ6nlg": { "read": true, "write": true } }, "about": null, "authData": null, "avatar": { "url": "https://parsefiles.back4app.com/a7Iaz2A4Sq90qqOKfaffPeBeLSavCGE2Uv852kAc/c097ef87fa4502f7c4695d5214276f19_6.jpg", "name": "c097ef87fa4502f7c4695d5214276f19_6.jpg" }, "createdAt": "2016-10-20T07:18:04.138Z", "email": "[email protected]", "emailVerified": null, "fullName": "Full Name 12", "fullNameLowercase": [ { "value": "sarah" }, { "value": "doe" } ], "hasBlocked": [], "id": "5uHVYJ6nlg", "location": null, "phone": null, "phoneNo": null, "updatedAt": "2019-12-21T03:06:08.130Z", "username": "username12" }, { "ACL": { "*": { "read": true }, "jfUfXlXyYf": { "read": true, "write": true } }, "about": null, "authData": null, "avatar": { "url": "https://parsefiles.back4app.com/a7Iaz2A4Sq90qqOKfaffPeBeLSavCGE2Uv852kAc/2d05b6c68fc689ac4a9fc9d4867d2f4a_2.jpg", "name": "2d05b6c68fc689ac4a9fc9d4867d2f4a_2.jpg" }, "createdAt": "2016-12-09T10:44:55.637Z", "email": "[email protected]", "emailVerified": null, "fullName": "Full Name 62", "fullNameLowercase": [ { "value": "robert" }, { "value": "doe" } ], "hasBlocked": [], "id": "jfUfXlXyYf", "location": null, "phone": null, "phoneNo": null, "updatedAt": "2019-12-21T03:06:08.699Z", "username": "username63" }, { "ACL": { "*": { "read": true }, "YyqzDwQ9XM": { "read": true, "write": true } }, "about": null, "authData": null, "avatar": { "url": "https://parsefiles.back4app.com/a7Iaz2A4Sq90qqOKfaffPeBeLSavCGE2Uv852kAc/862878198895a1d46838ca67c6b1ad3d_avatar.jpg", "name": "862878198895a1d46838ca67c6b1ad3d_avatar.jpg" }, "createdAt": "2018-06-22T08:39:26.435Z", "email": "[email protected]", "emailVerified": null, "fullName": "Full Name 48", "fullNameLowercase": [ { "value": "smsrtter" } ], "hasBlocked": [], "id": "YyqzDwQ9XM", "location": null, "phone": null, "phoneNo": null, "updatedAt": "2019-12-21T03:06:08.481Z", "username": "username49" } ] } } }