This GraphQL query fetches All KIES
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
query allKIES { kies (skip: 0, limit: 3) { results { ACL adminCode cityId containingState { id } country createdAt featureCode id location { latitude longitude } name population updatedAt } } }
{ "data": { "kies": { "results": [ { "ACL": null, "adminCode": "KY", "cityId": 4283845, "containingState": { "id": "LF22chhxzQ" }, "country": "US", "createdAt": "2019-12-11T12:40:44.720Z", "featureCode": "PPL", "id": "6MpEqvkXmV", "location": { "latitude": 39.10645, "longitude": -84.47883 }, "name": "Bellevue", "population": 5892, "updatedAt": "2019-12-11T12:40:44.720Z" }, { "ACL": null, "adminCode": "KY", "cityId": 4283974, "containingState": { "id": "LF22chhxzQ" }, "country": "US", "createdAt": "2019-12-11T12:40:44.720Z", "featureCode": "PPL", "id": "6qnTv2qyfb", "location": { "latitude": 37.56869, "longitude": -84.29632 }, "name": "Berea", "population": 14882, "updatedAt": "2019-12-11T12:40:44.720Z" }, { "ACL": null, "adminCode": "KY", "cityId": 4282818, "containingState": { "id": "LF22chhxzQ" }, "country": "US", "createdAt": "2019-12-11T12:40:44.720Z", "featureCode": "PPL", "id": "MSPY1dkvcS", "location": { "latitude": 38.20396, "longitude": -85.72524 }, "name": "Audubon Park", "population": 1508, "updatedAt": "2019-12-11T12:40:44.720Z" } ] } } }