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

  1. Back4App
  2. Arizona 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": "YQB6OzbyEW"
              }
            ]
          },
          "shortDescription": "first-order administrative division",
          "updatedAt": "2020-06-10T01:52:46.907Z"
        },
        {
          "ACL": null,
          "createdAt": "2020-06-08T17:54:21.772Z",
          "featureClass": {
            "id": "QYZkvHDkSC"
          },
          "featureCode": "BNK",
          "id": "W2sPxlP2PA",
          "longDescription": "an elevation, typically located on a shelf, over which the depth of water is relatively shallow but sufficient for most surface navigation",
          "places": {
            "results": []
          },
          "shortDescription": "bank(s)",
          "updatedAt": "2020-06-08T17:54:21.772Z"
        },
        {
          "ACL": null,
          "createdAt": "2020-06-08T17:54:29.738Z",
          "featureClass": {
            "id": "QYZkvHDkSC"
          },
          "featureCode": "CNLA",
          "id": "t2N7rAPra3",
          "longDescription": "a conduit used to carry water",
          "places": {
            "results": []
          },
          "shortDescription": "aqueduct",
          "updatedAt": "2020-06-08T17:54:29.738Z"
        }
      ]
    }
  }
}