The Database Hub | Back4App
The Database Hub | Back4App
How it works
  • Log In
  • Sign Up

  1. Back4App
  2. 🇮🇹 Italy Dataset All Cities
Public

62
59
62
59
  • DatabaseDatabase
  • GraphQL API PlaygroundAPI Playground
  • Get Started GuideGet Started
  • IssuesIssues
  • ContributorsContributors
  • Database
    Database
    Get Started Guide
    Get Started
    Issues
    Issues
    Contributors
    Contributors

All Cities

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": "14",
          "cityId": 2522731,
          "country": "Italy",
          "countryCode": "IT",
          "createdAt": "2019-12-13T02:17:31.850Z",
          "featureCode": "PPLA3",
          "id": "DmXDb3JZML",
          "location": {
            "latitude": 39.49209,
            "longitude": 9.39023
          },
          "muni": "111104",
          "muniSub": null,
          "name": "Villasalto",
          "population": 1108,
          "updatedAt": "2019-12-13T02:17:31.850Z"
        },
        {
          "ACL": null,
          "adminCode": "03",
          "cityId": 2522677,
          "country": "Italy",
          "countryCode": "IT",
          "createdAt": "2019-12-13T02:17:31.850Z",
          "featureCode": "PPLA3",
          "id": "tqAO8yQRDD",
          "location": {
            "latitude": 39.31053,
            "longitude": 16.29269
          },
          "muni": "078155",
          "muniSub": null,
          "name": "Zumpano",
          "population": 343,
          "updatedAt": "2019-12-13T02:17:31.850Z"
        },
        {
          "ACL": null,
          "adminCode": "03",
          "cityId": 2522699,
          "country": "Italy",
          "countryCode": "IT",
          "createdAt": "2019-12-13T02:17:31.850Z",
          "featureCode": "PPLA3",
          "id": "xpQzPJeOVp",
          "location": {
            "latitude": 38.66548,
            "longitude": 15.92874
          },
          "muni": "102048",
          "muniSub": null,
          "name": "Zaccanopoli",
          "population": 779,
          "updatedAt": "2019-12-13T02:17:31.850Z"
        }
      ]
    }
  }
}