This GraphQL query fetches All GAS
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 allGAS { gAS (skip: 0, limit: 3) { results { ACL adminCode cityId containingState { id } country createdAt featureCode id location { latitude longitude } muni name population updatedAt } } }
{ "data": { "gAS": { "results": [ { "ACL": null, "adminCode": "GA", "cityId": 4179557, "containingState": { "id": "36t3FG30Cw" }, "country": "US", "createdAt": "2019-12-11T12:39:50.369Z", "featureCode": "PPLA2", "id": "wGDqlJjrOV", "location": { "latitude": 31.53937, "longitude": -82.46236 }, "muni": null, "name": "Alma", "population": 3536, "updatedAt": "2019-12-11T12:39:50.369Z" }, { "ACL": null, "adminCode": "GA", "cityId": 4179193, "containingState": { "id": "36t3FG30Cw" }, "country": "US", "createdAt": "2019-12-11T12:39:50.369Z", "featureCode": "PPLA2", "id": "wDrjxM1uJ3", "location": { "latitude": 31.13727, "longitude": -83.42408 }, "muni": null, "name": "Adel", "population": 5316, "updatedAt": "2019-12-11T12:39:50.369Z" }, { "ACL": null, "adminCode": "GA", "cityId": 4179094, "containingState": { "id": "36t3FG30Cw" }, "country": "US", "createdAt": "2019-12-11T12:39:50.369Z", "featureCode": "PPL", "id": "PovM1P4IDN", "location": { "latitude": 34.3687, "longitude": -84.93411 }, "muni": null, "name": "Adairsville", "population": 4778, "updatedAt": "2019-12-11T12:39:50.369Z" } ] } } }