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-06-09T02:29:20.650Z", "currentUser": { "id": "C8iwUMqC3m" }, "id": "wAQtYzUs7J", "otherUser": { "id": "C8iwUMqC3m" }, "text": "Woow Dress liked your question: اياب ةيةي ", "updatedAt": "2018-06-09T02:29:20.650Z" }, { "ACL": null, "createdAt": "2018-06-09T15:55:45.224Z", "currentUser": { "id": "BwsODJsNTm" }, "id": "1uw7xCRZMd", "otherUser": { "id": "EGyCVD4EuM" }, "text": "Selamet Puji liked your Answer: awsome", "updatedAt": "2018-06-09T15:55:45.224Z" }, { "ACL": null, "createdAt": "2018-04-16T12:54:10.921Z", "currentUser": { "id": "mkvSuwpL33" }, "id": "6KV7OskNU7", "otherUser": { "id": "mkvSuwpL33" }, "text": "*Cubycode answered to your question: *Where can I find good JS tutorials?", "updatedAt": "2018-04-24T08:17:26.593Z" } ] } } }