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": "01", "cityId": 883183, "country": "Zimbabwe", "countryCode": "ZW", "createdAt": "2019-12-14T19:25:52.969Z", "featureCode": "PPL", "id": "QBFqeTBoCj", "location": { "latitude": -18.96167, "longitude": 32.40557 }, "name": "Odzi", "population": 3438, "updatedAt": "2019-12-14T19:25:52.969Z" }, { "ACL": null, "adminCode": "03", "cityId": 884798, "country": "Zimbabwe", "countryCode": "ZW", "createdAt": "2019-12-14T19:25:52.969Z", "featureCode": "PPL", "id": "fOjbHTAWTm", "location": { "latitude": -17.03333, "longitude": 30.85 }, "name": "Mvurwi", "population": 7970, "updatedAt": "2019-12-14T19:25:52.969Z" }, { "ACL": null, "adminCode": "08", "cityId": 878549, "country": "Zimbabwe", "countryCode": "ZW", "createdAt": "2019-12-14T19:25:52.969Z", "featureCode": "PPL", "id": "ngHI2YM0ED", "location": { "latitude": -20.32674, "longitude": 30.06648 }, "name": "Zvishavane", "population": 35896, "updatedAt": "2019-12-14T19:25:52.969Z" } ] } } }