This GraphQL query fetches All SOCMinorGroups
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
query allSOCMinorGroups {
sOCMinorGroups (skip: 0, limit: 3) {
results {
ACL
broadGroups (skip: 0, limit: 3) {
results {
id
}
}
code
createdAt
id
majorGroup {
id
}
title
updatedAt
}
}
}{
"data": {
"sOCMinorGroups": {
"results": [
{
"ACL": null,
"broadGroups": {
"results": [
{
"id": "78SOYRghwD"
},
{
"id": "eq0HyK82ae"
},
{
"id": "pHA9xSUwnf"
}
]
},
"code": "11-1000",
"createdAt": "2019-12-16T04:46:47.944Z",
"id": "SFbWGrJJaZ",
"majorGroup": {
"id": "TcflZc5P0y"
},
"title": "Top Executives",
"updatedAt": "2019-12-16T04:47:15.803Z"
},
{
"ACL": null,
"broadGroups": {
"results": [
{
"id": "8EuHmaxS63"
},
{
"id": "jFypCJ0lai"
},
{
"id": "tGwuno5jhO"
}
]
},
"code": "11-2000",
"createdAt": "2019-12-16T04:46:47.945Z",
"id": "TyASnZQARe",
"majorGroup": {
"id": "TcflZc5P0y"
},
"title": "Advertising, Marketing, Promotions, Public Relations, and Sales Managers",
"updatedAt": "2019-12-16T04:47:15.803Z"
},
{
"ACL": null,
"broadGroups": {
"results": [
{
"id": "4ybXfXHw9Q"
},
{
"id": "6kVIpixUdc"
},
{
"id": "Ca2q2HnfUU"
}
]
},
"code": "11-3000",
"createdAt": "2019-12-16T04:46:47.945Z",
"id": "BqetY0yG5F",
"majorGroup": {
"id": "TcflZc5P0y"
},
"title": "Operations Specialties Managers",
"updatedAt": "2019-12-16T04:47:15.803Z"
}
]
}
}
}