This GraphQL query fetches All HIS
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
query allHIS { hIS (skip: 0, limit: 3) { results { ACL adminCode cityId containingState { id } country createdAt featureCode id location { latitude longitude } muni name population updatedAt } } }
{ "data": { "hIS": { "results": [ { "ACL": null, "adminCode": "HI", "cityId": 5847746, "containingState": { "id": "99Odvp6TuS" }, "country": "US", "createdAt": "2019-12-11T12:39:59.330Z", "featureCode": "PPL", "id": "1FyljldaYz", "location": { "latitude": 19.72861, "longitude": -155.98167 }, "muni": null, "name": "Kalaoa", "population": 9644, "updatedAt": "2019-12-11T12:39:59.330Z" }, { "ACL": null, "adminCode": "HI", "cityId": 5849346, "containingState": { "id": "99Odvp6TuS" }, "country": "US", "createdAt": "2019-12-11T12:39:59.337Z", "featureCode": "PPL", "id": "fzy99298th", "location": { "latitude": 22.21208, "longitude": -159.41342 }, "muni": null, "name": "Kīlauea", "population": 2803, "updatedAt": "2019-12-11T12:39:59.337Z" }, { "ACL": null, "adminCode": "HI", "cityId": 5847387, "containingState": { "id": "99Odvp6TuS" }, "country": "US", "createdAt": "2019-12-11T12:39:59.330Z", "featureCode": "PPL", "id": "7LLBN1TjL3", "location": { "latitude": 21.68048, "longitude": -157.95237 }, "muni": null, "name": "Kahuku", "population": 2614, "updatedAt": "2019-12-11T12:39:59.330Z" } ] } } }