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

  1. Back4App
  2. 🇺🇿 Uzbekistan
Public

12
16
12
16
  • 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": "12",
          "cityId": 1215957,
          "country": "Uzbekistan",
          "countryCode": "UZ",
          "createdAt": "2019-12-14T18:35:38.577Z",
          "featureCode": "PPLA",
          "id": "Bf2ijGBJEu",
          "location": {
            "latitude": 37.22417,
            "longitude": 67.27833
          },
          "muni": null,
          "name": "Tirmiz",
          "population": 140385,
          "updatedAt": "2019-12-14T18:35:38.577Z"
        },
        {
          "ACL": null,
          "adminCode": "09",
          "cityId": 829959,
          "country": "Uzbekistan",
          "countryCode": "UZ",
          "createdAt": "2019-12-14T18:35:38.577Z",
          "featureCode": "PPLA2",
          "id": "oxC4CJqm3y",
          "location": {
            "latitude": 42.40881,
            "longitude": 59.44544
          },
          "muni": null,
          "name": "Xo‘jayli Shahri",
          "population": 0,
          "updatedAt": "2019-12-14T18:35:38.577Z"
        },
        {
          "ACL": null,
          "adminCode": "09",
          "cityId": 829955,
          "country": "Uzbekistan",
          "countryCode": "UZ",
          "createdAt": "2019-12-14T18:35:38.577Z",
          "featureCode": "PPLA2",
          "id": "SgZH8Sq5bh",
          "location": {
            "latitude": 43.05207,
            "longitude": 58.84596
          },
          "muni": null,
          "name": "Qo‘ng‘irot Shahri",
          "population": 0,
          "updatedAt": "2019-12-14T18:35:38.577Z"
        }
      ]
    }
  }
}