This GraphQL query fetches All ILS
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 allILS { iLS (skip: 0, limit: 3) { results { ACL adminCode cityId containingState { id } country createdAt featureCode id location { latitude longitude } muni name population updatedAt } } }
{ "data": { "iLS": { "results": [ { "ACL": null, "adminCode": "IL", "cityId": 4233022, "containingState": { "id": "IdZoq8ZfsG" }, "country": "US", "createdAt": "2019-12-11T12:40:07.688Z", "featureCode": "PPL", "id": "bCovqHrPcd", "location": { "latitude": 39.79948, "longitude": -88.46228 }, "muni": "28755", "name": "Atwood", "population": 1191, "updatedAt": "2019-12-11T12:40:07.688Z" }, { "ACL": null, "adminCode": "IL", "cityId": 4233572, "containingState": { "id": "IdZoq8ZfsG" }, "country": "US", "createdAt": "2019-12-11T12:40:07.688Z", "featureCode": "PPL", "id": "Gn7bJ54QN1", "location": { "latitude": 39.09282, "longitude": -89.80398 }, "muni": "10357", "name": "Benld", "population": 1488, "updatedAt": "2019-12-11T12:40:07.688Z" }, { "ACL": null, "adminCode": "IL", "cityId": 4233586, "containingState": { "id": "IdZoq8ZfsG" }, "country": "US", "createdAt": "2019-12-11T12:40:07.688Z", "featureCode": "PPLA2", "id": "snWjfRVbeL", "location": { "latitude": 37.99672, "longitude": -88.92007 }, "muni": "05313", "name": "Benton", "population": 7041, "updatedAt": "2019-12-11T12:40:07.688Z" } ] } } }