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 followed { id } follower { id } id updatedAt } } }
{ "data": { "follows": { "results": [ { "ACL": null, "createdAt": "2017-12-16T06:19:23.062Z", "followed": { "id": "IvJ2rhNISY" }, "follower": { "id": "fsQARqhmVZ" }, "id": "M06sV1FP7B", "updatedAt": "2017-12-16T06:19:23.062Z" }, { "ACL": null, "createdAt": "2018-04-19T13:53:38.132Z", "followed": { "id": "PBr1Z46tft" }, "follower": { "id": "IH22iACAal" }, "id": "9O2ff1ylUQ", "updatedAt": "2018-04-19T13:53:38.132Z" }, { "ACL": null, "createdAt": "2018-07-08T15:37:52.016Z", "followed": { "id": "WlWAYch8kO" }, "follower": { "id": "Msng2JbrX5" }, "id": "V4XizxLIP7", "updatedAt": "2018-07-08T15:37:52.016Z" } ] } } }