This GraphQL query fetches All Jobs
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allJobs { jobs (skip: 0, limit: 3) { results { ACL SOCDetailedGroup { id } createdAt id title updatedAt } } }
{ "data": { "jobs": { "results": [ { "ACL": null, "SOCDetailedGroup": { "id": "UqwqcbmyGR" }, "createdAt": "2019-12-16T06:34:10.936Z", "id": "Ymh0Ip2otN", "title": "Admiral", "updatedAt": "2019-12-16T06:34:10.936Z" }, { "ACL": null, "SOCDetailedGroup": { "id": "U88AmfHhV4" }, "createdAt": "2019-12-16T06:34:10.937Z", "id": "SAmYNll9T6", "title": "General Manager", "updatedAt": "2019-12-16T06:34:10.937Z" }, { "ACL": null, "SOCDetailedGroup": { "id": "UqwqcbmyGR" }, "createdAt": "2019-12-16T06:34:10.936Z", "id": "nqCCJ7nBC5", "title": "County Commissioner", "updatedAt": "2019-12-16T06:34:10.936Z" } ] } } }