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
query allUsers { users (skip: 0, limit: 3) { results { ACL age authData blood createdAt email emailVerified firstname full id lastname phone photo { url name } position { latitude longitude } updatedAt username } } }
{ "data": { "users": { "results": [ { "ACL": { "*": { "read": true }, "1muKZrNbm7": { "read": true, "write": true } }, "age": 33, "authData": null, "blood": 0, "createdAt": "2018-02-06T15:47:28.856Z", "email": null, "emailVerified": null, "firstname": "Adam", "full": 1, "id": "1muKZrNbm7", "lastname": "Mitch", "phone": null, "photo": { "url": "https://parsefiles.back4app.com/WF3aFh7pSDlp69gjbASIvtH6pvmIXgY7Qbs4BQHw/4495ede261cf749d9c044e2dec0b0c7c_file.bin", "name": "4495ede261cf749d9c044e2dec0b0c7c_file.bin" }, "position": { "latitude": 52.58668387900282, "longitude": 39.61305431970138 }, "updatedAt": "2019-12-21T03:05:32.420Z", "username": "username8" }, { "ACL": { "*": { "read": true }, "o5fLrF4hmt": { "read": true, "write": true } }, "age": 18, "authData": null, "blood": 0, "createdAt": "2018-03-05T11:46:55.069Z", "email": null, "emailVerified": null, "firstname": "dimus", "full": 1, "id": "o5fLrF4hmt", "lastname": "digger", "phone": null, "photo": { "url": "https://parsefiles.back4app.com/WF3aFh7pSDlp69gjbASIvtH6pvmIXgY7Qbs4BQHw/afec9ebc2e6c8a9389f52a56a2414598_userpicture.png", "name": "afec9ebc2e6c8a9389f52a56a2414598_userpicture.png" }, "position": { "latitude": 52.58669833333333, "longitude": 39.61308666666666 }, "updatedAt": "2019-12-21T03:05:36.463Z", "username": "username215" }, { "ACL": { "*": { "read": true }, "EQlS3vuBI8": { "read": true, "write": true } }, "age": 18, "authData": null, "blood": 4, "createdAt": "2018-03-23T07:29:03.892Z", "email": null, "emailVerified": null, "firstname": "Shaikh", "full": 1, "id": "EQlS3vuBI8", "lastname": "Atta", "phone": null, "photo": { "url": "https://parsefiles.back4app.com/WF3aFh7pSDlp69gjbASIvtH6pvmIXgY7Qbs4BQHw/d8cefb7824e55143e98bed7c418ca7a2_userpicture.png", "name": "d8cefb7824e55143e98bed7c418ca7a2_userpicture.png" }, "position": { "latitude": 0, "longitude": 0 }, "updatedAt": "2019-12-21T03:05:33.687Z", "username": "username71" } ] } } }