This GraphQL query fetches All Follows
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
query allFollows { follows (skip: 0, limit: 3) { results { ACL createdAt currUser { id } id isFollowing { id } updatedAt } } }
{ "data": { "follows": { "results": [ { "ACL": null, "createdAt": "2018-03-23T09:36:45.095Z", "currUser": { "id": "wZv0tExZGx" }, "id": "Xtrk859ZZ6", "isFollowing": { "id": "rYX3nB6iHZ" }, "updatedAt": "2018-03-23T09:36:45.095Z" }, { "ACL": null, "createdAt": "2018-07-22T10:09:57.784Z", "currUser": { "id": "KMdB4Mt0Cd" }, "id": "X9ugI3iOwm", "isFollowing": { "id": "D6nTSE9rHI" }, "updatedAt": "2018-07-22T10:09:57.784Z" }, { "ACL": null, "createdAt": "2018-07-28T23:08:20.135Z", "currUser": { "id": "E6HODg1skJ" }, "id": "O43xRoO1ZP", "isFollowing": { "id": "KhLVXgXDCh" }, "updatedAt": "2018-07-28T23:08:20.135Z" } ] } } }