This GraphQL query fetches All Users
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
query allUsers { users (skip: 0, limit: 3) { results { ACL authData createdAt email emailVerified id updatedAt user_image_file { url name } username } } }
{ "data": { "users": { "results": [ { "ACL": { "*": { "read": true }, "aVgqowhN9M": { "read": true, "write": true } }, "authData": null, "createdAt": "2019-10-23T09:50:03.354Z", "email": "[email protected]", "emailVerified": true, "id": "aVgqowhN9M", "updatedAt": "2019-12-21T03:05:30.776Z", "user_image_file": { "url": "https://parsefiles.back4app.com/VlxGZVfJoJHHTDG2hG8ERVFaBD1klIpiY2fWBQfb/4bc339eb15017d4ac645dc7c915e64d0_12437174-6928121-image-a-78_1555601544127.jpg", "name": "4bc339eb15017d4ac645dc7c915e64d0_12437174-6928121-image-a-78_1555601544127.jpg" }, "username": "username2" }, { "ACL": { "*": { "read": true }, "NuaaY14UdD": { "read": true, "write": true } }, "authData": null, "createdAt": "2019-11-24T10:52:09.439Z", "email": "[email protected]", "emailVerified": null, "id": "NuaaY14UdD", "updatedAt": "2019-12-21T03:05:30.776Z", "user_image_file": null, "username": "username1" } ] } } }