This GraphQL query fetches All WIES
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
query allWIES { wies (skip: 0, limit: 3) { results { ACL adminCode cityId containingState { id } country createdAt featureCode id location { latitude longitude } name population updatedAt } } }
{ "data": { "wies": { "results": [ { "ACL": null, "adminCode": "WY", "cityId": 5816861, "containingState": { "id": "oTurt84nQS" }, "country": "US", "createdAt": "2019-12-11T12:45:55.460Z", "featureCode": "PPL", "id": "SO6ADrJ354", "location": { "latitude": 42.72493, "longitude": -110.93187 }, "name": "Afton", "population": 1972, "updatedAt": "2019-12-11T12:45:55.460Z" }, { "ACL": null, "adminCode": "WY", "cityId": 5823516, "containingState": { "id": "oTurt84nQS" }, "country": "US", "createdAt": "2019-12-11T12:45:55.460Z", "featureCode": "PPLA2", "id": "8kSPQ5Shu7", "location": { "latitude": 42.75969, "longitude": -105.38221 }, "name": "Douglas", "population": 6531, "updatedAt": "2019-12-11T12:45:55.460Z" }, { "ACL": null, "adminCode": "WY", "cityId": 5821593, "containingState": { "id": "oTurt84nQS" }, "country": "US", "createdAt": "2019-12-11T12:45:55.460Z", "featureCode": "PPLA2", "id": "6ho92aj4yH", "location": { "latitude": 44.52634, "longitude": -109.05653 }, "name": "Cody", "population": 9792, "updatedAt": "2019-12-11T12:45:55.460Z" } ] } } }