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

  1. Back4App
  2. 🇷🇺 Russia
Public

15
31
15
31
  • 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": "77",
          "cityId": 461704,
          "country": "Russia",
          "countryCode": "RU",
          "createdAt": "2019-12-13T20:37:57.616Z",
          "featureCode": "PPL",
          "id": "betjkmJdfl",
          "location": {
            "latitude": 56.55,
            "longitude": 36.43333
          },
          "muni": null,
          "name": "Novozavidovskiy",
          "population": 7641,
          "updatedAt": "2019-12-13T20:37:57.616Z"
        },
        {
          "ACL": null,
          "adminCode": "41",
          "cityId": 462169,
          "country": "Russia",
          "countryCode": "RU",
          "createdAt": "2019-12-13T20:37:57.616Z",
          "featureCode": "PPL",
          "id": "fqVmS1k6wm",
          "location": {
            "latitude": 52.0842,
            "longitude": 36.37777
          },
          "muni": null,
          "name": "Zolotukhino",
          "population": 4886,
          "updatedAt": "2019-12-13T20:37:57.616Z"
        },
        {
          "ACL": null,
          "adminCode": "83",
          "cityId": 462203,
          "country": "Russia",
          "countryCode": "RU",
          "createdAt": "2019-12-13T20:37:57.616Z",
          "featureCode": "PPL",
          "id": "hEOsADnyoh",
          "location": {
            "latitude": 55.5281,
            "longitude": 41.1053
          },
          "muni": null,
          "name": "Zolotkovo",
          "population": 3655,
          "updatedAt": "2019-12-13T20:37:57.616Z"
        }
      ]
    }
  }
}