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

  1. Back4App
  2. πŸ‡©πŸ‡ͺ Germany
Public

37
35
37
35
  • 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": "13",
          "cityId": 2803776,
          "country": "Germany",
          "countryCode": "DE",
          "createdAt": "2019-12-12T19:26:03.043Z",
          "featureCode": "PPL",
          "id": "RUxGEVvuQ8",
          "location": {
            "latitude": 51.4793,
            "longitude": 12.35893
          },
          "muni": "14730",
          "muniSub": "14730250",
          "name": "Zschortau",
          "population": 2412,
          "updatedAt": "2019-12-12T19:26:03.043Z"
        },
        {
          "ACL": null,
          "adminCode": "01",
          "cityId": 2803642,
          "country": "Germany",
          "countryCode": "DE",
          "createdAt": "2019-12-12T19:26:03.042Z",
          "featureCode": "PPLA4",
          "id": "2eYylOOYgH",
          "location": {
            "latitude": 49.29636,
            "longitude": 8.82254
          },
          "muni": "08226",
          "muniSub": "08226101",
          "name": "Zuzenhausen",
          "population": 2083,
          "updatedAt": "2019-12-12T19:26:03.042Z"
        },
        {
          "ACL": null,
          "adminCode": "07",
          "cityId": 2803723,
          "country": "Germany",
          "countryCode": "DE",
          "createdAt": "2019-12-12T19:26:03.043Z",
          "featureCode": "PPL",
          "id": "4QqhUduJ0G",
          "location": {
            "latitude": 50.69447,
            "longitude": 6.65414
          },
          "muni": "05366",
          "muniSub": "05366044",
          "name": "Zulpich",
          "population": 20208,
          "updatedAt": "2019-12-12T19:26:03.043Z"
        }
      ]
    }
  }
}