This GraphQL query fetches All STEMDomains
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
query allSTEMDomains {
sTEMDomains (skip: 0, limit: 3) {
results {
ACL
createdAt
id
subDomains (skip: 0, limit: 3) {
results {
id
}
}
title
updatedAt
}
}
}{
"data": {
"sTEMDomains": {
"results": [
{
"ACL": null,
"createdAt": "2019-12-16T01:43:21.412Z",
"id": "OPIKQ2cHMk",
"subDomains": {
"results": [
{
"id": "JrnIrdqpqc"
},
{
"id": "N2Jgl73xti"
}
]
},
"title": "Science, Engineering, Mathematics, and Information Technology",
"updatedAt": "2019-12-16T08:32:16.336Z"
},
{
"ACL": null,
"createdAt": "2019-12-16T01:50:09.631Z",
"id": "k3cNxqENFK",
"subDomains": {
"results": [
{
"id": "Bx5GSiSpjh"
},
{
"id": "ptfEhRiUy7"
}
]
},
"title": "Science and Engineering Related",
"updatedAt": "2019-12-16T08:32:57.286Z"
}
]
}
}
}