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

  1. Back4App
  2. Alabama State Points of Interest
Public

0
1
0
1
  • DatabaseDatabase
  • GraphQL API PlaygroundAPI Playground
  • Get Started GuideGet Started
  • IssuesIssues
  • ContributorsContributors
  • Database
    Database
    Get Started Guide
    Get Started
    Issues
    Issues
    Contributors
    Contributors

All FeatureCodes

This GraphQL query fetches All FeatureCodes


0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
query allFeatureCodes {
      featureCodes (skip: 0, limit: 3) {
        results {
          ACL
          createdAt
          featureClass {
            id
          }
          featureCode
          id
          longDescription
          places (skip: 0, limit: 3) {
            results {
              id
            }
          }
          shortDescription
          updatedAt
        }
      }
    }
{
  "data": {
    "featureCodes": {
      "results": [
        {
          "ACL": null,
          "createdAt": "2020-06-08T17:53:58.392Z",
          "featureClass": {
            "id": "yMKulpQAmm"
          },
          "featureCode": "ADM1",
          "id": "7fCQGBKCL1",
          "longDescription": "a primary administrative division of a country, such as a state in the United States",
          "places": {
            "results": [
              {
                "id": "mjHSumwhU5"
              }
            ]
          },
          "shortDescription": "first-order administrative division",
          "updatedAt": "2020-06-09T04:30:50.516Z"
        },
        {
          "ACL": null,
          "createdAt": "2020-06-08T17:54:03.006Z",
          "featureClass": {
            "id": "yMKulpQAmm"
          },
          "featureCode": "ADM3H",
          "id": "kURmf24oeO",
          "longDescription": "a former third-order administrative division",
          "places": {
            "results": []
          },
          "shortDescription": "historical third-order administrative division",
          "updatedAt": "2020-06-08T17:54:03.006Z"
        },
        {
          "ACL": null,
          "createdAt": "2020-06-08T17:54:07.894Z",
          "featureClass": {
            "id": "yMKulpQAmm"
          },
          "featureCode": "ADMDH",
          "id": "5o33elH0AR",
          "longDescription": "a former administrative division of a political entity, undifferentiated as to administrative level",
          "places": {
            "results": []
          },
          "shortDescription": "historical administrative division",
          "updatedAt": "2020-06-08T17:54:07.894Z"
        }
      ]
    }
  }
}