This GraphQL query fetches All STEMOccupationTypes
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
query allSTEMOccupationTypes { sTEMOccupationTypes (skip: 0, limit: 3) { results { ACL code createdAt groups (skip: 0, limit: 3) { results { id } } id title updatedAt } } }
{ "data": { "sTEMOccupationTypes": { "results": [ { "ACL": null, "code": "A", "createdAt": "2019-12-16T01:55:07.682Z", "groups": { "results": [ { "id": "ES99T3xo2X" }, { "id": "Rwvl5aAFSf" }, { "id": "Zez6HDyYBj" } ] }, "id": "nMsc74AEqD", "title": "Research, Development, Design, or Practitioner", "updatedAt": "2019-12-16T09:30:35.659Z" }, { "ACL": null, "code": "B", "createdAt": "2019-12-16T01:55:11.033Z", "groups": { "results": [ { "id": "CYmokDCIRF" }, { "id": "ZQViW9NIyX" }, { "id": "j50EcLwluM" } ] }, "id": "qLFFdObUsi", "title": "Technologist and Technician", "updatedAt": "2019-12-16T09:30:42.394Z" }, { "ACL": null, "code": "C", "createdAt": "2019-12-16T01:55:19.641Z", "groups": { "results": [ { "id": "28XH4wsrAG" }, { "id": "SI4Bl1OjSS" }, { "id": "glb077qVOi" } ] }, "id": "sErmoAibds", "title": "Postsecondary Teaching", "updatedAt": "2019-12-16T09:30:46.598Z" } ] } } }