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": "", "asciiname": "McArthur Reef", "cc2": "", "countryCode": "US", "createdAt": "2020-06-09T11:53:23.275Z", "dem": "-9999", "elevation": "", "featureClass": { "id": "qahFDWhjKn" }, "featureCode": { "id": "kbJ771eggS" }, "geoLocation": { "latitude": 52.06667, "longitude": 177.86667 }, "geonameid": "2130833", "id": "ODuGfXjINx", "modificationDate": "2016-07-05", "name": "McArthur Reef", "population": "0", "timezone": "Asia/Kamchatka", "updatedAt": "2020-06-09T11:53:23.275Z" }, { "ACL": null, "admin1Code": "AK", "admin2Code": "180", "admin3Code": "", "admin4Code": "", "alternatenames": "", "asciiname": "Prince of Wales Shoal", "cc2": "", "countryCode": "US", "createdAt": "2020-06-09T11:53:24.483Z", "dem": "-9999", "elevation": "", "featureClass": { "id": "qahFDWhjKn" }, "featureCode": { "id": "z42thHvSI4" }, "geoLocation": { "latitude": 65.87812, "longitude": -167.94819 }, "geonameid": "4031854", "id": "4CHg9zPWSw", "modificationDate": "2019-02-11", "name": "Prince of Wales Shoal", "population": "0", "timezone": "", "updatedAt": "2020-06-09T11:53:24.483Z" }, { "ACL": null, "admin1Code": "AK", "admin2Code": "", "admin3Code": "", "admin4Code": "", "alternatenames": "Banka Portlok;Банка Портлок", "asciiname": "Portlock Bank", "cc2": "", "countryCode": "US", "createdAt": "2020-06-09T11:53:25.043Z", "dem": "-9999", "elevation": "", "featureClass": { "id": "qahFDWhjKn" }, "featureCode": { "id": "pIdrJA4BH4" }, "geoLocation": { "latitude": 58.33333, "longitude": -150.5 }, "geonameid": "4031857", "id": "QLBwq8msH9", "modificationDate": "2017-07-07", "name": "Portlock Bank", "population": "0", "timezone": "America/Dawson", "updatedAt": "2020-06-09T11:53:25.043Z" } ] } } }