This GraphQL query fetches All Users
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
query allUsers { users (skip: 0, limit: 3) { results { ACL ProfileImage authData createdAt email emailVerified id updatedAt username } } }
{ "data": { "users": { "results": [ { "ACL": { "*": { "read": true }, "CRlND6ZFLV": { "read": true, "write": true } }, "ProfileImage": "https://lh3.googleusercontent.com/a-/AAuE7mAhIpIwr-GFXwlcUGNYy-DyJHJjftDq5EkJfmWVXQ=s96-c", "authData": null, "createdAt": "2019-12-04T07:44:20.084Z", "email": null, "emailVerified": null, "id": "CRlND6ZFLV", "updatedAt": "2019-12-21T03:02:05.546Z", "username": "username2" }, { "ACL": { "*": { "read": true }, "oNAsrWLU3S": { "read": true, "write": true } }, "ProfileImage": "https://lh4.googleusercontent.com/--pyyevUZdEU/AAAAAAAAAAI/AAAAAAAAAAA/ACHi3rfBxaaUgn53yVqJjsGZw7xB_uxJVg/s96-c/photo.jpg", "authData": null, "createdAt": "2019-12-04T15:31:34.414Z", "email": null, "emailVerified": null, "id": "oNAsrWLU3S", "updatedAt": "2019-12-21T03:02:05.547Z", "username": "username6" }, { "ACL": { "*": { "read": true }, "kFZjBGtmeA": { "read": true, "write": true } }, "ProfileImage": "https://lh5.googleusercontent.com/-4EqYoNm3aOw/AAAAAAAAAAI/AAAAAAAAAAA/ACHi3rc4-9_IV4H8yQds1wcOuCmQBq9dRg/s96-c/photo.jpg", "authData": null, "createdAt": "2019-12-04T19:29:01.504Z", "email": null, "emailVerified": null, "id": "kFZjBGtmeA", "updatedAt": "2019-12-21T03:02:05.546Z", "username": "username4" } ] } } }