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 currentUser { id } id otherUser { id } text updatedAt } } }
{ "data": { "activities": { "results": [ { "ACL": null, "createdAt": "2018-01-30T19:47:54.599Z", "currentUser": { "id": "vRCE379Vw4" }, "id": "X4fgs2xKcg", "otherUser": { "id": "vRCE379Vw4" }, "text": "*John Doe liked your quote: A room without books is like a body without a soul", "updatedAt": "2018-04-11T07:27:01.266Z" }, { "ACL": null, "createdAt": "2018-06-25T15:35:03.208Z", "currentUser": { "id": "ZO0TIipBEQ" }, "id": "3A3E5sbaux", "otherUser": { "id": "GB8PKx1l5t" }, "text": "Roshan Motwani liked your quote: Wag kang magpapaapekto kung hindi naman naging kayo!\n", "updatedAt": "2018-06-25T15:35:03.208Z" }, { "ACL": null, "createdAt": "2018-06-12T02:47:16.134Z", "currentUser": { "id": "JO4JMCgAHz" }, "id": "L11esvF3HO", "otherUser": { "id": "VHPXHEHIOp" }, "text": "simha liked your quote: So many books, so little time", "updatedAt": "2018-06-12T02:47:16.134Z" } ] } } }