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": "013", "admin3Code": "", "admin4Code": "", "alternatenames": "HealthSouth Scottsdale Rehabilitation Hospital;Holloway Pond", "asciiname": "HealthSouth Scottsdale Rehabilitation Hospital", "cc2": "", "countryCode": "US", "createdAt": "2020-06-09T14:59:51.701Z", "dem": "418", "elevation": "421", "featureClass": { "id": "56mNO2HGcv" }, "featureCode": { "id": "JUBmj4lWe6" }, "geoLocation": { "latitude": 33.58338, "longitude": -111.87257 }, "geonameid": "4114972", "id": "5QOmXYf0fC", "modificationDate": "2011-12-11", "name": "HealthSouth Scottsdale Rehabilitation Hospital", "population": "0", "timezone": "America/Chicago", "updatedAt": "2020-06-09T14:59:51.701Z" }, { "ACL": null, "admin1Code": "AZ", "admin2Code": "011", "admin3Code": "", "admin4Code": "", "alternatenames": "", "asciiname": "Big Rock Tank", "cc2": "", "countryCode": "US", "createdAt": "2020-06-09T14:59:52.026Z", "dem": "1776", "elevation": "1767", "featureClass": { "id": "QYZkvHDkSC" }, "featureCode": { "id": "OoHK64i7zH" }, "geoLocation": { "latitude": 33.14784, "longitude": -109.07062 }, "geonameid": "5284483", "id": "dT4FZedNfu", "modificationDate": "2006-01-15", "name": "Big Rock Tank", "population": "0", "timezone": "America/Phoenix", "updatedAt": "2020-06-09T14:59:52.026Z" }, { "ACL": null, "admin1Code": "AZ", "admin2Code": "017", "admin3Code": "", "admin4Code": "", "alternatenames": "", "asciiname": "Big Round Tank", "cc2": "", "countryCode": "US", "createdAt": "2020-06-09T14:59:52.415Z", "dem": "1776", "elevation": "1776", "featureClass": { "id": "QYZkvHDkSC" }, "featureCode": { "id": "OoHK64i7zH" }, "geoLocation": { "latitude": 34.69139, "longitude": -110.52895 }, "geonameid": "5284485", "id": "Wto14TEwBs", "modificationDate": "2011-12-11", "name": "Big Round Tank", "population": "0", "timezone": "America/Phoenix", "updatedAt": "2020-06-09T14:59:52.415Z" } ] } } }