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

  1. Back4App
  2. 🏔️❄️️🌨️ Alaska State Points of Interest
Public

0
0
0
0
  • 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": "f4XvuxM4yL"
              }
            ]
          },
          "shortDescription": "first-order administrative division",
          "updatedAt": "2020-06-09T21:43:49.876Z"
        },
        {
          "ACL": null,
          "createdAt": "2020-06-08T17:54:24.058Z",
          "featureClass": {
            "id": "QYZkvHDkSC"
          },
          "featureCode": "BOG",
          "id": "9qEcj1LHUP",
          "longDescription": "a wetland characterized by peat forming sphagnum moss, sedge, and other acid-water plants",
          "places": {
            "results": []
          },
          "shortDescription": "bog(s)",
          "updatedAt": "2020-06-08T17:54:24.058Z"
        },
        {
          "ACL": null,
          "createdAt": "2020-06-08T17:54:20.760Z",
          "featureClass": {
            "id": "QYZkvHDkSC"
          },
          "featureCode": "BGHT",
          "id": "otBCsLVt3e",
          "longDescription": "an open body of water forming a slight recession in a coastline",
          "places": {
            "results": []
          },
          "shortDescription": "bight(s)",
          "updatedAt": "2020-06-08T17:54:20.760Z"
        }
      ]
    }
  }
}