This GraphQL query fetches All STEMSubDomains
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
query allSTEMSubDomains {
sTEMSubDomains (skip: 0, limit: 3) {
results {
ACL
code
createdAt
domain {
id
}
groups (skip: 0, limit: 3) {
results {
id
}
}
id
title
updatedAt
}
}
}{
"data": {
"sTEMSubDomains": {
"results": [
{
"ACL": null,
"code": "1",
"createdAt": "2019-12-16T01:51:29.515Z",
"domain": {
"id": "OPIKQ2cHMk"
},
"groups": {
"results": [
{
"id": "28XH4wsrAG"
},
{
"id": "7H3puHPOrh"
},
{
"id": "Rwvl5aAFSf"
}
]
},
"id": "N2Jgl73xti",
"title": "Life and Physical Science, Engineering, Mathematics, and Information Technology",
"updatedAt": "2019-12-16T18:33:22.651Z"
},
{
"ACL": null,
"code": "2",
"createdAt": "2019-12-16T01:51:34.065Z",
"domain": {
"id": "OPIKQ2cHMk"
},
"groups": {
"results": [
{
"id": "SI4Bl1OjSS"
},
{
"id": "Zez6HDyYBj"
},
{
"id": "j50EcLwluM"
}
]
},
"id": "JrnIrdqpqc",
"title": "Social Science",
"updatedAt": "2019-12-16T08:37:53.161Z"
},
{
"ACL": null,
"code": "3",
"createdAt": "2019-12-16T01:51:37.692Z",
"domain": {
"id": "k3cNxqENFK"
},
"groups": {
"results": [
{
"id": "CYmokDCIRF"
},
{
"id": "glb077qVOi"
},
{
"id": "krsetEZaZU"
}
]
},
"id": "ptfEhRiUy7",
"title": "Architecture",
"updatedAt": "2019-12-16T08:38:35.022Z"
}
]
}
}
}