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": "2020-02-13T09:46:07.663Z", "currUser": { "id": "m7j6RzUzRz" }, "id": "EHE5XeGilT", "otherUser": { "id": "sHWxwEFn2u" }, "text": "patriciaflores liked your ad: dddd", "updatedAt": "2020-02-13T09:46:07.663Z" }, { "ACL": null, "createdAt": "2020-02-13T09:46:11.817Z", "currUser": { "id": "m7j6RzUzRz" }, "id": "mLcD7yZA4a", "otherUser": { "id": "sHWxwEFn2u" }, "text": "patriciaflores liked your ad: jhgkjgkjhkj", "updatedAt": "2020-02-13T09:46:11.817Z" }, { "ACL": null, "createdAt": "2020-02-13T09:46:15.070Z", "currUser": { "id": "Ro0iZDGDJe" }, "id": "LAtAAcRggj", "otherUser": { "id": "sHWxwEFn2u" }, "text": "patriciaflores liked your ad: puma", "updatedAt": "2020-02-13T09:46:15.070Z" } ] } } }