This GraphQL query fetches All Groups
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
query allGroups { groups (skip: 0, limit: 3) { results { ACL code createdAt definition family { id } id programs (skip: 0, limit: 3) { results { id } } title updatedAt } } }
{ "data": { "groups": { "results": [ { "ACL": null, "code": "01.02", "createdAt": "2019-12-23T23:06:27.750Z", "definition": "Instructional content for this group of programs is defined in codes 01.0201 - 01.0299.", "family": { "id": "sGvAHRQwQu" }, "id": "WaOadnCQih", "programs": { "results": [ { "id": "Apqek0g6os" }, { "id": "Lr5BSXr5YY" }, { "id": "TRab8bzRkW" } ] }, "title": "Agricultural Mechanization", "updatedAt": "2019-12-23T23:07:00.135Z" }, { "ACL": null, "code": "01.00", "createdAt": "2019-12-23T23:06:27.750Z", "definition": "Instructional content is defined in code 01.0000.", "family": { "id": "sGvAHRQwQu" }, "id": "uj4unO6Sbw", "programs": { "results": [ { "id": "Xc9GaBo4Gt" } ] }, "title": "Agriculture, General", "updatedAt": "2019-12-23T23:07:00.135Z" }, { "ACL": null, "code": "01.03", "createdAt": "2019-12-23T23:06:27.750Z", "definition": "Instructional content for this group of programs is defined in codes 01.0301 - 01.0399.", "family": { "id": "sGvAHRQwQu" }, "id": "HONSM1DC48", "programs": { "results": [ { "id": "8Bd4MHkJdd" }, { "id": "LJUCG9ZGi1" }, { "id": "SwqecZXvys" } ] }, "title": "Agricultural Production Operations", "updatedAt": "2019-12-23T23:07:00.135Z" } ] } } }