This GraphQL query fetches All Activities
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allActivities { activities (skip: 0, limit: 3) { results { ACL createdAt id nationalIndustry { id } title updatedAt } } }
{ "data": { "activities": { "results": [ { "ACL": null, "createdAt": "2019-12-17T23:58:19.155Z", "id": "vwJSC2RSAD", "nationalIndustry": { "id": "GXSraiiEFg" }, "title": "Popcorn farming, field and seed production", "updatedAt": "2019-12-17T23:58:19.155Z" }, { "ACL": null, "createdAt": "2019-12-17T23:58:19.155Z", "id": "5qeInv7f5u", "nationalIndustry": { "id": "bgttapgfyg" }, "title": "Wheat farming, field and seed production", "updatedAt": "2019-12-17T23:58:19.155Z" }, { "ACL": null, "createdAt": "2019-12-17T23:58:19.155Z", "id": "HZT2ctO43C", "nationalIndustry": { "id": "T9TwdfSlFm" }, "title": "Flaxseed farming, field and seed production", "updatedAt": "2019-12-17T23:58:19.155Z" } ] } } }