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

  1. Back4App
  2. Massachusetts
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": "Npm5KNWCSG"
              }
            ]
          },
          "shortDescription": "first-order administrative division",
          "updatedAt": "2020-06-18T19:08:57.614Z"
        },
        {
          "ACL": null,
          "createdAt": "2020-06-08T17:54:07.310Z",
          "featureClass": {
            "id": "yMKulpQAmm"
          },
          "featureCode": "ADMD",
          "id": "3SmxkXxURm",
          "longDescription": "an administrative division of a country, undifferentiated as to administrative level",
          "places": {
            "results": [
              {
                "id": "00jgy2tUhM"
              },
              {
                "id": "5IU9X7EyEs"
              },
              {
                "id": "8lBz0XIuyf"
              }
            ]
          },
          "shortDescription": "administrative division",
          "updatedAt": "2020-06-18T20:04:05.302Z"
        },
        {
          "ACL": null,
          "createdAt": "2020-06-08T17:54:13.052Z",
          "featureClass": {
            "id": "yMKulpQAmm"
          },
          "featureCode": "PCLI",
          "id": "AwGBX4WHah",
          "longDescription": "",
          "places": {
            "results": []
          },
          "shortDescription": "independent political entity",
          "updatedAt": "2020-06-08T17:54:13.052Z"
        }
      ]
    }
  }
}