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 currentUser { id } id isFollowing { id } updatedAt } } }
{ "data": { "follows": { "results": [ { "ACL": null, "createdAt": "2019-06-27T04:39:33.950Z", "currentUser": null, "id": "Mq4wA7Rf2D", "isFollowing": null, "updatedAt": "2019-06-27T04:39:33.950Z" }, { "ACL": null, "createdAt": "2019-12-06T06:11:10.057Z", "currentUser": { "id": "A10qn2cTx2" }, "id": "qLzyt05yfC", "isFollowing": { "id": "YDxpMTdlnK" }, "updatedAt": "2019-12-06T06:11:10.057Z" }, { "ACL": null, "createdAt": "2019-11-27T11:10:54.783Z", "currentUser": { "id": "Fhoo4jPeTA" }, "id": "HLbdDTlzXM", "isFollowing": { "id": "A10qn2cTx2" }, "updatedAt": "2019-11-27T11:10:54.783Z" } ] } } }