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

  1. Back4App
  2. ๐Ÿ‡ซ๐Ÿ‡ฎ Finland
Public

11
12
11
12
  • 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": 630736,
          "country": "Finland",
          "countryCode": "FI",
          "createdAt": "2019-12-12T21:10:09.897Z",
          "featureCode": "PPLA3",
          "id": "iqodoswQTn",
          "location": {
            "latitude": 60.8,
            "longitude": 23.28333
          },
          "muni": "981",
          "name": "Ypรคjรค",
          "population": 2659,
          "updatedAt": "2019-12-12T21:10:09.897Z"
        },
        {
          "ACL": null,
          "adminCode": "08",
          "cityId": 631393,
          "country": "Finland",
          "countryCode": "FI",
          "createdAt": "2019-12-12T21:10:09.897Z",
          "featureCode": "PPL",
          "id": "4ZttXwGE3C",
          "location": {
            "latitude": 60.5794,
            "longitude": 27.70354
          },
          "muni": "935",
          "name": "Virojoki",
          "population": 1328,
          "updatedAt": "2019-12-12T21:10:09.897Z"
        },
        {
          "ACL": null,
          "adminCode": "18",
          "cityId": 631204,
          "country": "Finland",
          "countryCode": "FI",
          "createdAt": "2019-12-12T21:10:09.897Z",
          "featureCode": "PPL",
          "id": "hHjURaCIB4",
          "location": {
            "latitude": 64.14466,
            "longitude": 28.28196
          },
          "muni": "765",
          "name": "Vuokatti",
          "population": 6183,
          "updatedAt": "2019-12-12T21:10:09.897Z"
        }
      ]
    }
  }
}