The Database Hub | Back4App
The Database Hub | Back4App
How it works
  • Log In
  • Sign Up

  1. Back4App
  2. Industries and Activities
Public

31
26
31
26
  • DatabaseDatabase
  • GraphQL API PlaygroundAPI Playground
  • Get Started GuideGet Started
  • IssuesIssues
  • ContributorsContributors
  • Database
    Database
    Get Started Guide
    Get Started
    Issues
    Issues
    Contributors
    Contributors

All Industries

This GraphQL query fetches All Industries


0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
query allIndustries {
      industries (skip: 0, limit: 3) {
        results {
          ACL
          code
          createdAt
          crossReferences {
              ...on Element {
              value
            }
          }
          description
          id
          industryGroup {
            id
          }
          nationalIndustries (skip: 0, limit: 3) {
            results {
              id
            }
          }
          title
          updatedAt
        }
      }
    }
{
  "data": {
    "industries": {
      "results": [
        {
          "ACL": null,
          "code": "11111",
          "createdAt": "2019-12-17T23:57:47.458Z",
          "crossReferences": null,
          "description": "See industry description for 111110.",
          "id": "YAaT7wnLny",
          "industryGroup": {
            "id": "JSMnFZLi9k"
          },
          "nationalIndustries": {
            "results": [
              {
                "id": "VW1EIq1PEr"
              }
            ]
          },
          "title": "Soybean Farming",
          "updatedAt": "2019-12-18T00:01:45.342Z"
        },
        {
          "ACL": null,
          "code": "11112",
          "createdAt": "2019-12-17T23:57:47.458Z",
          "crossReferences": null,
          "description": "See industry description for 111120.",
          "id": "9OgrDj8cJD",
          "industryGroup": {
            "id": "JSMnFZLi9k"
          },
          "nationalIndustries": {
            "results": [
              {
                "id": "T9TwdfSlFm"
              }
            ]
          },
          "title": "Oilseed (except Soybean) Farming",
          "updatedAt": "2019-12-18T00:01:45.342Z"
        },
        {
          "ACL": null,
          "code": "11119",
          "createdAt": "2019-12-17T23:57:47.458Z",
          "crossReferences": [
            {
              "value": "Growing wheat--are classified in Industry 11114, Wheat Farming;"
            },
            {
              "value": "Growing corn (except sweet corn)--are classified in Industry 11115, Corn Farming;"
            },
            {
              "value": "Growing sweet corn--are classified in Industry 11121, Vegetable and Melon Farming; and"
            },
            {
              "value": "Growing rice (except wild rice)--are classified in Industry 11116, Rice Farming."
            }
          ],
          "description": "This industry comprises establishments primarily engaged in (1) growing grain(s) and/or producing grain seeds (except wheat, corn, and rice) or (2) growing a combination of grain(s) and oilseed(s) with no one grain (or family of grains) or oilseed (or family of oilseeds) accounting for one-half of the establishment's agricultural production (i.e., value of crops for market). Combination grain(s) and oilseed(s) establishments may produce oilseed(s) and grain(s) seeds and/or grow oilseed(s) and grain(s).\n \n\n Illustrative Examples:\n \n\n Barley farming\n Rye farming\n Milo farming\n Sorghum farming\n Oat farming\n Wild rice farming\n Oilseed and grain combination farming\n \n\n \n\n Cross-References. Establishments primarily engaged in--",
          "id": "feqZzqni0c",
          "industryGroup": {
            "id": "JSMnFZLi9k"
          },
          "nationalIndustries": {
            "results": [
              {
                "id": "Xz4dd7wxR8"
              },
              {
                "id": "pOsajObVAl"
              }
            ]
          },
          "title": "Other Grain Farming",
          "updatedAt": "2019-12-18T00:01:45.343Z"
        }
      ]
    }
  }
}