This GraphQL query fetches All Users
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allUsers { users (skip: 0, limit: 3) { results { ACL authData createdAt email emailVerified id updatedAt username } } }
{ "data": { "users": { "results": [ { "ACL": { "*": { "read": true }, "Fhoo4jPeTA": { "read": true, "write": true } }, "authData": null, "createdAt": "2019-11-25T10:28:49.901Z", "email": null, "emailVerified": true, "id": "Fhoo4jPeTA", "updatedAt": "2019-12-21T03:02:55.680Z", "username": "username3" }, { "ACL": { "*": { "read": true }, "RgeI9OCcma": { "read": true, "write": true } }, "authData": null, "createdAt": "2019-11-28T11:21:27.732Z", "email": null, "emailVerified": null, "id": "RgeI9OCcma", "updatedAt": "2019-12-21T03:02:55.680Z", "username": "username4" }, { "ACL": { "*": { "read": true }, "A10qn2cTx2": { "read": true, "write": true } }, "authData": null, "createdAt": "2019-11-25T11:29:11.593Z", "email": null, "emailVerified": null, "id": "A10qn2cTx2", "updatedAt": "2019-12-21T03:02:55.680Z", "username": "username2" } ] } } }