This GraphQL query fetches All SOCBroadGroups
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
query allSOCBroadGroups {
sOCBroadGroups (skip: 0, limit: 3) {
results {
ACL
code
createdAt
detailedGroups (skip: 0, limit: 3) {
results {
id
}
}
id
minorGroup {
id
}
title
updatedAt
}
}
}{
"data": {
"sOCBroadGroups": {
"results": [
{
"ACL": null,
"code": "11-1010",
"createdAt": "2019-12-16T04:46:47.944Z",
"detailedGroups": {
"results": [
{
"id": "UqwqcbmyGR"
}
]
},
"id": "eq0HyK82ae",
"minorGroup": {
"id": "SFbWGrJJaZ"
},
"title": "Chief Executives",
"updatedAt": "2019-12-16T04:47:15.803Z"
},
{
"ACL": null,
"code": "11-1020",
"createdAt": "2019-12-16T04:46:47.944Z",
"detailedGroups": {
"results": [
{
"id": "U88AmfHhV4"
}
]
},
"id": "pHA9xSUwnf",
"minorGroup": {
"id": "SFbWGrJJaZ"
},
"title": "General and Operations Managers",
"updatedAt": "2019-12-16T04:47:15.803Z"
},
{
"ACL": null,
"code": "11-2020",
"createdAt": "2019-12-16T04:46:47.945Z",
"detailedGroups": {
"results": [
{
"id": "TJGIzmwo5f"
},
{
"id": "d54uHHGeX3"
}
]
},
"id": "jFypCJ0lai",
"minorGroup": {
"id": "TyASnZQARe"
},
"title": "Marketing and Sales Managers",
"updatedAt": "2019-12-16T04:47:15.803Z"
}
]
}
}
}