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

  1. Back4App
  2. CIP - Classification of Instructional Programs
Public

15
22
15
22
  • DatabaseDatabase
  • GraphQL API PlaygroundAPI Playground
  • Get Started GuideGet Started
  • IssuesIssues
  • ContributorsContributors
  • Database
    Database
    Get Started Guide
    Get Started
    Issues
    Issues
    Contributors
    Contributors

All Families

This GraphQL query fetches All Families


0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
query allFamilies {
      families (skip: 0, limit: 3) {
        results {
          ACL
          code
          createdAt
          definition
          groups (skip: 0, limit: 3) {
            results {
              id
            }
          }
          id
          title
          updatedAt
        }
      }
    }
{
  "data": {
    "families": {
      "results": [
        {
          "ACL": null,
          "code": "01",
          "createdAt": "2019-12-23T23:06:27.750Z",
          "definition": "Instructional programs that focus on agriculture, animal, plant, veterinary, and related sciences and that prepares individuals to apply specific knowledge, methods, and techniques to the management and performance of agricultural and veterinary operations.",
          "groups": {
            "results": [
              {
                "id": "096wSL54PM"
              },
              {
                "id": "60AO2cAP2Z"
              },
              {
                "id": "AGQUhgAXGJ"
              }
            ]
          },
          "id": "sGvAHRQwQu",
          "title": "AGRICULTURAL/ANIMAL/PLANT/VETERINARY SCIENCE AND RELATED FIELDS",
          "updatedAt": "2019-12-23T23:07:00.134Z"
        },
        {
          "ACL": null,
          "code": "03",
          "createdAt": "2019-12-23T23:06:28.992Z",
          "definition": "Instructional programs that focus on the various natural resources and conservation fields and prepare individuals for related occupations.",
          "groups": {
            "results": [
              {
                "id": "C5sbTJUr30"
              },
              {
                "id": "CU6Ps6bhAr"
              },
              {
                "id": "TsA0gVbLvG"
              }
            ]
          },
          "id": "HH702qgreB",
          "title": "NATURAL RESOURCES AND CONSERVATION",
          "updatedAt": "2019-12-23T23:07:01.036Z"
        },
        {
          "ACL": null,
          "code": "04",
          "createdAt": "2019-12-23T23:06:29.519Z",
          "definition": "Instructional programs that prepare individuals for professional practice in the various architecture-related fields and focus on the study of related aesthetic and socioeconomic aspects of the built environment.",
          "groups": {
            "results": [
              {
                "id": "6aNxFSev64"
              },
              {
                "id": "HsUaOtXoDD"
              },
              {
                "id": "Q8acYRZzDc"
              }
            ]
          },
          "id": "rEPKNlSRrX",
          "title": "ARCHITECTURE AND RELATED SERVICES",
          "updatedAt": "2019-12-23T23:07:01.534Z"
        }
      ]
    }
  }
}