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

  1. Back4App
  2. πŸ‡ΊπŸ‡¦ Ukraine
Public

27
49
27
49
  • 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": "05",
          "cityId": 505257,
          "country": "Ukraine",
          "countryCode": "UA",
          "createdAt": "2019-12-14T02:09:22.993Z",
          "featureCode": "PPL",
          "id": "WrTjJLmvV5",
          "location": {
            "latitude": 46.91562,
            "longitude": 37.09961
          },
          "muni": null,
          "name": "Urzuf",
          "population": 2904,
          "updatedAt": "2019-12-14T02:09:22.993Z"
        },
        {
          "ACL": null,
          "adminCode": "05",
          "cityId": 686818,
          "country": "Ukraine",
          "countryCode": "UA",
          "createdAt": "2019-12-14T02:09:22.994Z",
          "featureCode": "PPL",
          "id": "mWzfykE61J",
          "location": {
            "latitude": 48.0114,
            "longitude": 38.26444
          },
          "muni": null,
          "name": "Zuhres",
          "population": 19121,
          "updatedAt": "2019-12-14T02:09:22.994Z"
        },
        {
          "ACL": null,
          "adminCode": "15",
          "cityId": 686896,
          "country": "Ukraine",
          "countryCode": "UA",
          "createdAt": "2019-12-14T02:09:22.994Z",
          "featureCode": "PPLA2",
          "id": "m6UGcfy7M7",
          "location": {
            "latitude": 49.80597,
            "longitude": 24.89436
          },
          "muni": null,
          "name": "Zolochiv",
          "population": 22608,
          "updatedAt": "2019-12-14T02:09:22.994Z"
        }
      ]
    }
  }
}