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
21
22
query allCities { cities (skip: 0, limit: 3) { results { ACL adminCode cityId country countryCode createdAt featureCode id location { latitude longitude } muni muniSub name population updatedAt } } }
{ "data": { "cities": { "results": [ { "ACL": null, "adminCode": "ENG", "cityId": 2633399, "country": "United Kingdom", "countryCode": "GB", "createdAt": "2019-12-12T22:50:50.494Z", "featureCode": "PPL", "id": "zPobT6umph", "location": { "latitude": 52.51768, "longitude": -0.25852 }, "muni": "12UE", "muniSub": null, "name": "Yaxley", "population": 9174, "updatedAt": "2019-12-12T22:50:50.494Z" }, { "ACL": null, "adminCode": "ENG", "cityId": 2633346, "country": "United Kingdom", "countryCode": "GB", "createdAt": "2019-12-12T22:50:50.494Z", "featureCode": "PPL", "id": "RB83Lwu8Py", "location": { "latitude": 53.17399, "longitude": -1.69044 }, "muni": "17UF", "muniSub": null, "name": "Youlgreave", "population": 1018, "updatedAt": "2019-12-12T22:50:50.494Z" }, { "ACL": null, "adminCode": "ENG", "cityId": 2633352, "country": "United Kingdom", "countryCode": "GB", "createdAt": "2019-12-12T22:50:50.494Z", "featureCode": "PPLA2", "id": "XVg55GMQh6", "location": { "latitude": 53.95763, "longitude": -1.08271 }, "muni": null, "muniSub": null, "name": "York", "population": 153717, "updatedAt": "2019-12-12T22:50:50.494Z" } ] } } }