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

  1. Back4App
  2. ๐Ÿ‡ง๐Ÿ‡พ Belarus
Public

10
13
10
13
  • 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
query allCities {
      cities (skip: 0, limit: 3) {
        results {
          ACL
          adminCode
          cityId
          country
          countryCode
          createdAt
          featureCode
          id
          location {
            latitude
            longitude
          }
          name
          population
          updatedAt
        }
      }
    }
{
  "data": {
    "cities": {
      "results": [
        {
          "ACL": null,
          "adminCode": "03",
          "cityId": 618818,
          "country": "Belarus",
          "countryCode": "BY",
          "createdAt": "2019-12-12T19:01:59.301Z",
          "featureCode": "PPL",
          "id": "0WXeWjX6WK",
          "location": {
            "latitude": 53.0131,
            "longitude": 25.3443
          },
          "name": "Zhyrovichy",
          "population": 1800,
          "updatedAt": "2019-12-12T19:01:59.301Z"
        },
        {
          "ACL": null,
          "adminCode": "03",
          "cityId": 618932,
          "country": "Belarus",
          "countryCode": "BY",
          "createdAt": "2019-12-12T19:01:59.301Z",
          "featureCode": "PPL",
          "id": "uRNhjmhhvP",
          "location": {
            "latitude": 53.1504,
            "longitude": 24.8153
          },
          "name": "Zelโ€™va",
          "population": 7000,
          "updatedAt": "2019-12-12T19:01:59.301Z"
        },
        {
          "ACL": null,
          "adminCode": "01",
          "cityId": 619818,
          "country": "Belarus",
          "countryCode": "BY",
          "createdAt": "2019-12-12T19:01:59.301Z",
          "featureCode": "PPL",
          "id": "rCw6AGUU3C",
          "location": {
            "latitude": 52.37091,
            "longitude": 23.37083
          },
          "name": "Vysokaye",
          "population": 4496,
          "updatedAt": "2019-12-12T19:01:59.301Z"
        }
      ]
    }
  }
}