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": "03", "cityId": 293426, "country": "Israel", "countryCode": "IL", "createdAt": "2019-12-13T00:55:15.913Z", "featureCode": "PPL", "id": "wEaJN9RzA7", "location": { "latitude": 32.85301, "longitude": 35.1987 }, "name": "Tamra", "population": 25917, "updatedAt": "2019-12-13T00:55:15.913Z" }, { "ACL": null, "adminCode": "03", "cityId": 293420, "country": "Israel", "countryCode": "IL", "createdAt": "2019-12-13T00:55:15.913Z", "featureCode": "PPL", "id": "Vo8brcwLaA", "location": { "latitude": 33.01667, "longitude": 35.26667 }, "name": "maalot Tarshฤซhฤ", "population": 21400, "updatedAt": "2019-12-13T00:55:15.913Z" }, { "ACL": null, "adminCode": "03", "cityId": 293100, "country": "Israel", "countryCode": "IL", "createdAt": "2019-12-13T00:55:15.913Z", "featureCode": "PPL", "id": "8xZXS3sCNg", "location": { "latitude": 32.96465, "longitude": 35.496 }, "name": "Safed", "population": 27816, "updatedAt": "2019-12-13T00:55:15.913Z" } ] } } }