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 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": "MA",
          "admin2Code": "",
          "admin3Code": "",
          "admin4Code": "",
          "alternatenames": "",
          "asciiname": "Nantucket Shoals",
          "cc2": "",
          "countryCode": "US",
          "createdAt": "2020-06-18T12:47:54.260Z",
          "dem": "-9999",
          "elevation": "",
          "featureClass": {
            "id": "qahFDWhjKn"
          },
          "featureCode": {
            "id": "aG7FsievYU"
          },
          "geoLocation": {
            "latitude": 41.06917,
            "longitude": -69.67983
          },
          "geonameid": "3831601",
          "id": "0EEctoalgA",
          "modificationDate": "2019-03-18",
          "name": "Nantucket Shoals",
          "population": "0",
          "timezone": "",
          "updatedAt": "2020-06-18T12:47:54.260Z"
        },
        {
          "ACL": null,
          "admin1Code": "MA",
          "admin2Code": "023",
          "admin3Code": "",
          "admin4Code": "",
          "alternatenames": "Beal Cove;Beals Cove",
          "asciiname": "Beal Cove",
          "cc2": "",
          "countryCode": "US",
          "createdAt": "2020-06-18T12:48:00.563Z",
          "dem": "-1",
          "elevation": "0",
          "featureClass": {
            "id": "QYZkvHDkSC"
          },
          "featureCode": {
            "id": "qTWhVlGKLq"
          },
          "geoLocation": {
            "latitude": 42.23704,
            "longitude": -70.9231
          },
          "geonameid": "4832210",
          "id": "9vz2Jw0D4V",
          "modificationDate": "2006-01-15",
          "name": "Beal Cove",
          "population": "0",
          "timezone": "America/New_York",
          "updatedAt": "2020-06-18T12:48:00.563Z"
        },
        {
          "ACL": null,
          "admin1Code": "MA",
          "admin2Code": "023",
          "admin3Code": "40850",
          "admin4Code": "",
          "alternatenames": "",
          "asciiname": "Titicut",
          "cc2": "",
          "countryCode": "US",
          "createdAt": "2020-06-18T12:48:35.320Z",
          "dem": "13",
          "elevation": "6",
          "featureClass": {
            "id": "56mNO2HGcv"
          },
          "featureCode": null,
          "geoLocation": {
            "latitude": 41.93621,
            "longitude": -70.98476
          },
          "geonameid": "4832306",
          "id": "u0d8pzKvJ2",
          "modificationDate": "2017-05-23",
          "name": "Titicut",
          "population": "0",
          "timezone": "America/New_York",
          "updatedAt": "2020-06-18T12:48:35.320Z"
        }
      ]
    }
  }
}