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": "65", "cityId": 146969, "country": "Azerbaijan", "countryCode": "AZ", "createdAt": "2019-12-12T18:52:30.883Z", "featureCode": "PPLA", "id": "4mpNNZgIxg", "location": { "latitude": 39.79546, "longitude": 47.10989 }, "name": "Novyy Karanlug", "population": 5079, "updatedAt": "2019-12-12T18:52:30.883Z" }, { "ACL": null, "adminCode": "45", "cityId": 147059, "country": "Azerbaijan", "countryCode": "AZ", "createdAt": "2019-12-12T18:52:30.883Z", "featureCode": "PPL", "id": "qEDVugCZ0c", "location": { "latitude": 39.87867, "longitude": 48.39901 }, "name": "Əhmədbəyli", "population": 17242, "updatedAt": "2019-12-12T18:52:30.883Z" }, { "ACL": null, "adminCode": "15", "cityId": 146862, "country": "Azerbaijan", "countryCode": "AZ", "createdAt": "2019-12-12T18:52:30.883Z", "featureCode": "PPL", "id": "1bVLv22PFg", "location": { "latitude": 39.11817, "longitude": 48.59255 }, "name": "Prishibinskoye", "population": 13340, "updatedAt": "2019-12-12T18:52:30.883Z" } ] } } }