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 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": "AK",
          "admin2Code": "016",
          "admin3Code": "",
          "admin4Code": "",
          "alternatenames": "Sonom Beach;Sonoma Beach",
          "asciiname": "Sonom Beach",
          "cc2": "",
          "countryCode": "US",
          "createdAt": "2020-06-09T11:53:35.614Z",
          "dem": "1",
          "elevation": "",
          "featureClass": {
            "id": "H6e3AIR6us"
          },
          "featureCode": {
            "id": "WxpYe0E0F0"
          },
          "geoLocation": {
            "latitude": 52.79768,
            "longitude": 173.10434
          },
          "geonameid": "4045419",
          "id": "iJj5L7TXTE",
          "modificationDate": "2014-11-17",
          "name": "Sonom Beach",
          "population": "0",
          "timezone": "America/Adak",
          "updatedAt": "2020-06-09T11:53:35.614Z"
        },
        {
          "ACL": null,
          "admin1Code": "AK",
          "admin2Code": "016",
          "admin3Code": "",
          "admin4Code": "",
          "alternatenames": "Volcan Point;Vulcan Point",
          "asciiname": "Vulcan Point",
          "cc2": "",
          "countryCode": "US",
          "createdAt": "2020-06-09T11:53:28.149Z",
          "dem": "-9999",
          "elevation": "",
          "featureClass": {
            "id": "H6e3AIR6us"
          },
          "featureCode": {
            "id": "387AAVP1X4"
          },
          "geoLocation": {
            "latitude": 52.10222,
            "longitude": 177.53889
          },
          "geonameid": "4045410",
          "id": "HdnfYw2vdF",
          "modificationDate": "2014-10-08",
          "name": "Vulcan Point",
          "population": "0",
          "timezone": "America/Adak",
          "updatedAt": "2020-06-09T11:53:28.149Z"
        },
        {
          "ACL": null,
          "admin1Code": "AK",
          "admin2Code": "016",
          "admin3Code": "",
          "admin4Code": "",
          "alternatenames": "",
          "asciiname": "Point Poker",
          "cc2": "",
          "countryCode": "US",
          "createdAt": "2020-06-09T11:53:44.386Z",
          "dem": "6",
          "elevation": "",
          "featureClass": {
            "id": "H6e3AIR6us"
          },
          "featureCode": {
            "id": "387AAVP1X4"
          },
          "geoLocation": {
            "latitude": 52.90409,
            "longitude": 173.30315
          },
          "geonameid": "4045431",
          "id": "aOJrKh1x2q",
          "modificationDate": "2014-11-17",
          "name": "Point Poker",
          "population": "0",
          "timezone": "America/Adak",
          "updatedAt": "2020-06-09T11:53:44.386Z"
        }
      ]
    }
  }
}