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

  1. Back4App
  2. 🇯🇵 Japan Cities Dataset
Public

23
25
23
25
  • 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": "47",
          "cityId": 1848266,
          "country": "Japan",
          "countryCode": "JP",
          "createdAt": "2019-12-13T06:58:25.459Z",
          "featureCode": "PPL",
          "id": "jqp28QqvPD",
          "location": {
            "latitude": 24.46667,
            "longitude": 123
          },
          "muni": "47382",
          "name": "Yonakuni",
          "population": 1684,
          "updatedAt": "2019-12-13T06:58:25.459Z"
        },
        {
          "ACL": null,
          "adminCode": "29",
          "cityId": 1848210,
          "country": "Japan",
          "countryCode": "JP",
          "createdAt": "2019-12-13T06:58:25.458Z",
          "featureCode": "PPL",
          "id": "c2HJ4QqS8M",
          "location": {
            "latitude": 37.68333,
            "longitude": 138.88333
          },
          "muni": null,
          "name": "Yoshida-kasugachō",
          "population": 25500,
          "updatedAt": "2019-12-13T06:58:25.458Z"
        },
        {
          "ACL": null,
          "adminCode": "17",
          "cityId": 1847983,
          "country": "Japan",
          "countryCode": "JP",
          "createdAt": "2019-12-13T06:58:25.457Z",
          "featureCode": "PPLA2",
          "id": "GbgWgQBCTC",
          "location": {
            "latitude": 34.22699,
            "longitude": 133.77791
          },
          "muni": null,
          "name": "Zentsujichó",
          "population": 0,
          "updatedAt": "2019-12-13T06:58:25.457Z"
        }
      ]
    }
  }
}