This GraphQL query fetches All Activities
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
query allActivities { activities (skip: 0, limit: 3) { results { ACL createdAt currUser { id } id otherUser { id } text updatedAt } } }
{ "data": { "activities": { "results": [ { "ACL": null, "createdAt": "2019-05-30T21:35:12.312Z", "currUser": { "id": "qJmvnFGgoL" }, "id": "QSAielieDG", "otherUser": { "id": "YhcNLoUX9u" }, "text": null, "updatedAt": "2019-12-20T22:59:22.769Z" }, { "ACL": null, "createdAt": "2019-06-04T13:00:45.490Z", "currUser": { "id": "YhcNLoUX9u" }, "id": "ShbOesEJd1", "otherUser": { "id": "4feXJdvNoa" }, "text": null, "updatedAt": "2019-12-20T22:59:18.578Z" }, { "ACL": null, "createdAt": "2019-07-04T16:17:38.737Z", "currUser": { "id": "jzVsdrXx5N" }, "id": "bOJAqPzuxR", "otherUser": { "id": "jzVsdrXx5N" }, "text": null, "updatedAt": "2019-12-20T22:59:12.397Z" } ] } } }