This GraphQL query fetches All SOCMajorGroups
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
query allSOCMajorGroups {
sOCMajorGroups (skip: 0, limit: 3) {
results {
ACL
code
createdAt
id
minorGroups (skip: 0, limit: 3) {
results {
id
}
}
title
updatedAt
}
}
}{
"data": {
"sOCMajorGroups": {
"results": [
{
"ACL": null,
"code": "11-0000",
"createdAt": "2019-12-16T04:46:47.944Z",
"id": "TcflZc5P0y",
"minorGroups": {
"results": [
{
"id": "BqetY0yG5F"
},
{
"id": "SFbWGrJJaZ"
},
{
"id": "TyASnZQARe"
}
]
},
"title": "Management Occupations",
"updatedAt": "2019-12-16T04:47:15.803Z"
},
{
"ACL": null,
"code": "13-0000",
"createdAt": "2019-12-16T04:46:49.717Z",
"id": "QefrkFmSPg",
"minorGroups": {
"results": [
{
"id": "LvfuI3nUNJ"
},
{
"id": "mwraCKL520"
}
]
},
"title": "Business and Financial Operations Occupations",
"updatedAt": "2019-12-16T04:47:16.894Z"
},
{
"ACL": null,
"code": "15-0000",
"createdAt": "2019-12-16T04:46:50.835Z",
"id": "JqViXQ3Jxn",
"minorGroups": {
"results": [
{
"id": "1EQSLbuvhv"
},
{
"id": "AaYEYVht0H"
}
]
},
"title": "Computer and Mathematical Occupations",
"updatedAt": "2019-12-16T04:47:18.027Z"
}
]
}
}
}