This GraphQL query fetches All IndustryGroups
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
query allIndustryGroups { industryGroups (skip: 0, limit: 3) { results { ACL code createdAt description id industries (skip: 0, limit: 3) { results { id } } subsector { id } title updatedAt } } }
{ "data": { "industryGroups": { "results": [ { "ACL": null, "code": "1111", "createdAt": "2019-12-17T23:57:47.458Z", "description": "This industry group comprises establishments primarily engaged in (1) growing oilseed and/or grain crops and/or (2) producing oilseed and grain seeds. These crops have an annual life cycle and are typically grown in open fields.", "id": "JSMnFZLi9k", "industries": { "results": [ { "id": "9OgrDj8cJD" }, { "id": "O2scXeBy0Q" }, { "id": "WvDTErYgMU" } ] }, "subsector": { "id": "Zu5X7F5UUZ" }, "title": "Oilseed and Grain Farming", "updatedAt": "2019-12-18T00:01:45.342Z" }, { "ACL": null, "code": "1112", "createdAt": "2019-12-17T23:57:47.458Z", "description": null, "id": "N3fnOXWFjl", "industries": { "results": [ { "id": "A0KtvrBhD9" } ] }, "subsector": { "id": "Zu5X7F5UUZ" }, "title": "Vegetable and Melon Farming", "updatedAt": "2019-12-18T00:01:45.343Z" }, { "ACL": null, "code": "1113", "createdAt": "2019-12-17T23:57:48.024Z", "description": "This industry group comprises establishments primarily engaged in growing fruit and/or tree nut crops. The crops included in this industry group are generally not grown from seeds and have a perennial life cycle.", "id": "N7Lk1RalBX", "industries": { "results": [ { "id": "8fmtX2RR2g" }, { "id": "S0IEshCrIa" }, { "id": "xVEb33gyYw" } ] }, "subsector": { "id": "Zu5X7F5UUZ" }, "title": "Fruit and Tree Nut Farming", "updatedAt": "2019-12-18T00:01:45.688Z" } ] } } }