This GraphQL query fetches All WVS
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
query allWVS { wVS (skip: 0, limit: 3) { results { ACL adminCode cityId containingState { id } country createdAt featureCode id location { latitude longitude } name population updatedAt } } }
{ "data": { "wVS": { "results": [ { "ACL": null, "adminCode": "WV", "cityId": 4798532, "containingState": { "id": "AKdVd6tEu1" }, "country": "US", "createdAt": "2019-12-11T12:45:40.829Z", "featureCode": "PPL", "id": "lPL9mNYrmX", "location": { "latitude": 39.0251, "longitude": -79.93563 }, "name": "Belington", "population": 1933, "updatedAt": "2019-12-11T12:45:40.829Z" }, { "ACL": null, "adminCode": "WV", "cityId": 4798697, "containingState": { "id": "AKdVd6tEu1" }, "country": "US", "createdAt": "2019-12-11T12:45:40.829Z", "featureCode": "PPLA2", "id": "Dq36byA9Sd", "location": { "latitude": 39.6248, "longitude": -78.22472 }, "name": "Berkeley Springs", "population": 766, "updatedAt": "2019-12-11T12:45:40.829Z" }, { "ACL": null, "adminCode": "WV", "cityId": 4799532, "containingState": { "id": "AKdVd6tEu1" }, "country": "US", "createdAt": "2019-12-11T12:45:40.829Z", "featureCode": "PPL", "id": "H4s60zOqhO", "location": { "latitude": 39.26369, "longitude": -81.62929 }, "name": "Blennerhassett", "population": 3089, "updatedAt": "2019-12-11T12:45:40.829Z" } ] } } }