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": "NY", "admin2Code": "051", "admin3Code": "03364", "admin4Code": "", "alternatenames": "", "asciiname": "North Avon", "cc2": "", "countryCode": "US", "createdAt": "2020-06-04T16:06:44.726Z", "dem": "221", "elevation": "219", "featureClass": { "id": "vd0eb7svfo" }, "featureCode": { "id": "Vm3rGJC3Qu" }, "geoLocation": { "latitude": 42.93006, "longitude": -77.67778 }, "geonameid": "4832940", "id": "yauCGj5pIj", "modificationDate": "2017-05-23", "name": "North Avon", "population": "0", "timezone": "America/New_York", "updatedAt": "2020-06-04T16:06:44.726Z" }, { "ACL": null, "admin1Code": "NY", "admin2Code": "099", "admin3Code": "38858", "admin4Code": "", "alternatenames": "", "asciiname": "Newton Cemetery", "cc2": "", "countryCode": "US", "createdAt": "2020-06-04T16:06:44.987Z", "dem": "148", "elevation": "150", "featureClass": { "id": "bcJyO18oZt" }, "featureCode": { "id": "AUEJHNt94S" }, "geoLocation": { "latitude": 42.96951, "longitude": -76.94052 }, "geonameid": "4833068", "id": "aAf4QFp4oq", "modificationDate": "2017-05-23", "name": "Newton Cemetery", "population": "0", "timezone": "America/New_York", "updatedAt": "2020-06-04T16:06:44.987Z" }, { "ACL": null, "admin1Code": "NY", "admin2Code": "119", "admin3Code": "50078", "admin4Code": "", "alternatenames": "First Congregational Church;First Congregational Church of Chappaqua", "asciiname": "First Congregational Church of Chappaqua", "cc2": "", "countryCode": "US", "createdAt": "2020-06-04T16:06:45.174Z", "dem": "157", "elevation": "149", "featureClass": { "id": "bcJyO18oZt" }, "featureCode": { "id": "LTYycxLoX6" }, "geoLocation": { "latitude": 41.16537, "longitude": -73.76097 }, "geonameid": "4833070", "id": "sYxDdOkQG6", "modificationDate": "2017-05-23", "name": "First Congregational Church of Chappaqua", "population": "0", "timezone": "America/New_York", "updatedAt": "2020-06-04T16:06:45.174Z" } ] } } }