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 PointOfInterests

This GraphQL query fetches All PointOfInterests


0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
query allPointOfInterests {
      pointOfInterests (skip: 0, limit: 3) {
        results {
          ACL
          admin1Code
          admin2Code
          admin3Code
          admin4Code
          alternatenames
          asciiname
          cc2
          countryCode
          createdAt
          dem
          elevation
          featureClass {
            id
          }
          featureCode {
            id
          }
          geoLocation {
            latitude
            longitude
          }
          geonameid
          id
          modificationDate
          name
          population
          timezone
          updatedAt
        }
      }
    }
{
  "data": {
    "pointOfInterests": {
      "results": [
        {
          "ACL": null,
          "admin1Code": "AZ",
          "admin2Code": "019",
          "admin3Code": "",
          "admin4Code": "",
          "alternatenames": "",
          "asciiname": "Baby Jesus Ridge",
          "cc2": "",
          "countryCode": "US",
          "createdAt": "2020-06-09T14:59:55.617Z",
          "dem": "1039",
          "elevation": "1044",
          "featureClass": {
            "id": "H6e3AIR6us"
          },
          "featureCode": {
            "id": "J40yBc1zjn"
          },
          "geoLocation": {
            "latitude": 32.46896,
            "longitude": -110.86316
          },
          "geonameid": "5284490",
          "id": "M1uuDWVFGf",
          "modificationDate": "2006-01-15",
          "name": "Baby Jesus Ridge",
          "population": "0",
          "timezone": "America/Phoenix",
          "updatedAt": "2020-06-09T14:59:55.617Z"
        },
        {
          "ACL": null,
          "admin1Code": "AZ",
          "admin2Code": "005",
          "admin3Code": "",
          "admin4Code": "",
          "alternatenames": "",
          "asciiname": "Arroyo Park",
          "cc2": "",
          "countryCode": "US",
          "createdAt": "2020-06-09T14:59:56.672Z",
          "dem": "2107",
          "elevation": "2100",
          "featureClass": {
            "id": "mfJLxIPIAa"
          },
          "featureCode": {
            "id": "N1ivddboNi"
          },
          "geoLocation": {
            "latitude": 35.18168,
            "longitude": -111.64516
          },
          "geonameid": "5284492",
          "id": "oJ69Hecfiw",
          "modificationDate": "2010-02-14",
          "name": "Arroyo Park",
          "population": "0",
          "timezone": "America/Phoenix",
          "updatedAt": "2020-06-09T14:59:56.672Z"
        },
        {
          "ACL": null,
          "admin1Code": "AZ",
          "admin2Code": "021",
          "admin3Code": "",
          "admin4Code": "",
          "alternatenames": "",
          "asciiname": "Beehive Well",
          "cc2": "",
          "countryCode": "US",
          "createdAt": "2020-06-09T15:00:05.229Z",
          "dem": "924",
          "elevation": "925",
          "featureClass": {
            "id": "QYZkvHDkSC"
          },
          "featureCode": {
            "id": "ZH05aJamqd"
          },
          "geoLocation": {
            "latitude": 32.8234,
            "longitude": -110.80705
          },
          "geonameid": "5284512",
          "id": "0wzORUxPDW",
          "modificationDate": "2006-01-15",
          "name": "Beehive Well",
          "population": "0",
          "timezone": "America/Phoenix",
          "updatedAt": "2020-06-09T15:00:05.229Z"
        }
      ]
    }
  }
}