This GraphQL query fetches All Cities
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
query allCities { cities (skip: 0, limit: 3) { results { ACL adminCode cityId country countryCode createdAt featureCode id location { latitude longitude } name population updatedAt } } }
{ "data": { "cities": { "results": [ { "ACL": null, "adminCode": "212", "cityId": 3041792, "country": "Åland", "countryCode": "AX", "createdAt": "2019-12-12T18:52:14.747Z", "featureCode": "PPLA2", "id": "owjTQNKWF7", "location": { "latitude": 60.37453, "longitude": 19.84455 }, "name": "Geta", "population": 452, "updatedAt": "2019-12-12T18:52:14.747Z" }, { "ACL": null, "adminCode": "212", "cityId": 647455, "country": "Åland", "countryCode": "AX", "createdAt": "2019-12-12T18:52:14.747Z", "featureCode": "PPLA2", "id": "txj5uFDA3G", "location": { "latitude": 60.11695, "longitude": 20.25819 }, "name": "Lumparland", "population": 335, "updatedAt": "2019-12-12T18:52:14.747Z" }, { "ACL": null, "adminCode": "212", "cityId": 648382, "country": "Åland", "countryCode": "AX", "createdAt": "2019-12-12T18:52:14.747Z", "featureCode": "PPLA2", "id": "vEY3ks3fbp", "location": { "latitude": 60.07178, "longitude": 20.08472 }, "name": "Lemland", "population": 1829, "updatedAt": "2019-12-12T18:52:14.747Z" } ] } } }