This GraphQL query fetches All NIES
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 allNIES { nies (skip: 0, limit: 3) { results { ACL adminCode cityId containingState { id } country createdAt featureCode id location { latitude longitude } muni name population updatedAt } } }
{ "data": { "nies": { "results": [ { "ACL": null, "adminCode": "NY", "cityId": 5107091, "containingState": { "id": "WlTNPOu2HT" }, "country": "US", "createdAt": "2019-12-11T12:42:33.557Z", "featureCode": "PPL", "id": "z61PSfpqwu", "location": { "latitude": 40.97371, "longitude": -72.14369 }, "muni": "22194", "name": "Amagansett", "population": 1165, "updatedAt": "2019-12-11T12:42:33.557Z" }, { "ACL": null, "adminCode": "NY", "cityId": 4833272, "containingState": { "id": "WlTNPOu2HT" }, "country": "US", "createdAt": "2019-12-11T12:42:33.556Z", "featureCode": "PPL", "id": "Q5HGBq7V9K", "location": { "latitude": 42.56784, "longitude": -77.58971 }, "muni": "78861", "name": "Wayland", "population": 1813, "updatedAt": "2019-12-11T12:42:33.556Z" }, { "ACL": null, "adminCode": "NY", "cityId": 4833108, "containingState": { "id": "WlTNPOu2HT" }, "country": "US", "createdAt": "2019-12-11T12:42:33.556Z", "featureCode": "PPL", "id": "CgoYx4sl08", "location": { "latitude": 43.08423, "longitude": -76.8694 }, "muni": "28013", "name": "Clyde", "population": 2006, "updatedAt": "2019-12-11T12:42:33.556Z" } ] } } }