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

  1. Back4App
  2. Alabama State Points of Interest
Public

0
1
0
1
  • 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": "AL",
          "admin2Code": "019",
          "admin3Code": "",
          "admin4Code": "",
          "alternatenames": "",
          "asciiname": "Bauxite",
          "cc2": "",
          "countryCode": "US",
          "createdAt": "2020-06-08T19:04:54.392Z",
          "dem": "276",
          "elevation": "267",
          "featureClass": {
            "id": "hZHcKFiUYB"
          },
          "featureCode": {
            "id": "70jgNjsFrv"
          },
          "geoLocation": {
            "latitude": 34.04732,
            "longitude": -85.45968
          },
          "geonameid": "4046221",
          "id": "HZgGC524jT",
          "modificationDate": "2006-01-15",
          "name": "Bauxite",
          "population": "0",
          "timezone": "America/Chicago",
          "updatedAt": "2020-06-08T19:04:54.392Z"
        },
        {
          "ACL": null,
          "admin1Code": "AL",
          "admin2Code": "123",
          "admin3Code": "",
          "admin4Code": "",
          "alternatenames": "",
          "asciiname": "Baxley Hill",
          "cc2": "",
          "countryCode": "US",
          "createdAt": "2020-06-08T19:04:57.552Z",
          "dem": "144",
          "elevation": "148",
          "featureClass": {
            "id": "H6e3AIR6us"
          },
          "featureCode": {
            "id": "qwAEbzDWyL"
          },
          "geoLocation": {
            "latitude": 32.51569,
            "longitude": -85.80996
          },
          "geonameid": "4046229",
          "id": "DeIlGtOGqq",
          "modificationDate": "2006-01-15",
          "name": "Baxley Hill",
          "population": "0",
          "timezone": "America/Chicago",
          "updatedAt": "2020-06-08T19:04:57.552Z"
        },
        {
          "ACL": null,
          "admin1Code": "AL",
          "admin2Code": "003",
          "admin3Code": "",
          "admin4Code": "",
          "alternatenames": "",
          "asciiname": "Bay Branch",
          "cc2": "",
          "countryCode": "US",
          "createdAt": "2020-06-08T19:04:59.547Z",
          "dem": "43",
          "elevation": "23",
          "featureClass": {
            "id": "QYZkvHDkSC"
          },
          "featureCode": {
            "id": "kOctw4mxxa"
          },
          "geoLocation": {
            "latitude": 30.63019,
            "longitude": -87.81777
          },
          "geonameid": "4046237",
          "id": "52g4Qxfik6",
          "modificationDate": "2010-02-14",
          "name": "Bay Branch",
          "population": "0",
          "timezone": "America/Chicago",
          "updatedAt": "2020-06-08T19:04:59.547Z"
        }
      ]
    }
  }
}