This GraphQL query fetches All VAS
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
query allVAS { vAS (skip: 0, limit: 3) { results { ACL adminCode cityId containingState { id } country createdAt featureCode id location { latitude longitude } name population updatedAt } } }
{ "data": { "vAS": { "results": [ { "ACL": null, "adminCode": "VA", "cityId": 4744468, "containingState": { "id": "lEmMmICvNK" }, "country": "US", "createdAt": "2019-12-11T12:45:17.696Z", "featureCode": "PPL", "id": "PU9quvBFVH", "location": { "latitude": 38.83039, "longitude": -77.19637 }, "name": "Annandale", "population": 41008, "updatedAt": "2019-12-11T12:45:17.696Z" }, { "ACL": null, "adminCode": "VA", "cityId": 4744870, "containingState": { "id": "lEmMmICvNK" }, "country": "US", "createdAt": "2019-12-11T12:45:17.696Z", "featureCode": "PPL", "id": "JbxxLRutWb", "location": { "latitude": 39.04372, "longitude": -77.48749 }, "name": "Ashburn", "population": 43511, "updatedAt": "2019-12-11T12:45:17.696Z" }, { "ACL": null, "adminCode": "VA", "cityId": 4744309, "containingState": { "id": "lEmMmICvNK" }, "country": "US", "createdAt": "2019-12-11T12:45:17.696Z", "featureCode": "PPLA2", "id": "bjFkG0fUIj", "location": { "latitude": 37.34293, "longitude": -77.98056 }, "name": "Amelia Court House", "population": 1099, "updatedAt": "2019-12-11T12:45:17.696Z" } ] } } }