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

  1. Back4App
  2. 🇦🇹 Austria
Public

16
22
16
22
  • 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
query allCities {
      cities (skip: 0, limit: 3) {
        results {
          ACL
          adminCode
          cityId
          country
          countryCode
          createdAt
          featureCode
          id
          location {
            latitude
            longitude
          }
          muni
          name
          population
          updatedAt
        }
      }
    }
{
  "data": {
    "cities": {
      "results": [
        {
          "ACL": null,
          "adminCode": "07",
          "cityId": 2760523,
          "country": "Austria",
          "countryCode": "AT",
          "createdAt": "2019-12-12T18:48:58.253Z",
          "featureCode": "PPLA3",
          "id": "bNjmLdPGG6",
          "location": {
            "latitude": 47.2741,
            "longitude": 11.23961
          },
          "muni": "70369",
          "name": "Zirl",
          "population": 6567,
          "updatedAt": "2019-12-12T18:48:58.253Z"
        },
        {
          "ACL": null,
          "adminCode": "06",
          "cityId": 2760592,
          "country": "Austria",
          "countryCode": "AT",
          "createdAt": "2019-12-12T18:48:58.254Z",
          "featureCode": "PPLA3",
          "id": "4JqOqAms5K",
          "location": {
            "latitude": 46.9522,
            "longitude": 15.4342
          },
          "muni": "60670",
          "name": "Zettling",
          "population": 0,
          "updatedAt": "2019-12-12T18:48:58.254Z"
        },
        {
          "ACL": null,
          "adminCode": "03",
          "cityId": 2760575,
          "country": "Austria",
          "countryCode": "AT",
          "createdAt": "2019-12-12T18:48:58.253Z",
          "featureCode": "PPLA3",
          "id": "xex1xBRsjC",
          "location": {
            "latitude": 48.5303,
            "longitude": 15.92691
          },
          "muni": "31053",
          "name": "Ziersdorf",
          "population": 0,
          "updatedAt": "2019-12-12T18:48:58.253Z"
        }
      ]
    }
  }
}