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

  1. Back4App
  2. 🇫🇷 France All Cities Database
Public

41
57
41
57
  • 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
22
query allCities {
      cities (skip: 0, limit: 3) {
        results {
          ACL
          adminCode
          cityId
          country
          countryCode
          createdAt
          featureCode
          id
          location {
            latitude
            longitude
          }
          muni
          muniSub
          name
          population
          updatedAt
        }
      }
    }
{
  "data": {
    "cities": {
      "results": [
        {
          "ACL": null,
          "adminCode": "75",
          "cityId": 2967108,
          "country": "France",
          "countryCode": "FR",
          "createdAt": "2019-12-12T21:17:03.862Z",
          "featureCode": "PPLA3",
          "id": "RV9jq6JJwE",
          "location": {
            "latitude": 45.13333,
            "longitude": -0.66667
          },
          "muni": "331",
          "muniSub": "33058",
          "name": "Blaye",
          "population": 5277,
          "updatedAt": "2019-12-12T21:17:03.862Z"
        },
        {
          "ACL": null,
          "adminCode": "44",
          "cityId": 2967137,
          "country": "France",
          "countryCode": "FR",
          "createdAt": "2019-12-12T21:17:03.863Z",
          "featureCode": "PPL",
          "id": "ngM9wei5o7",
          "location": {
            "latitude": 47.72021,
            "longitude": 7.38819
          },
          "muni": "684",
          "muniSub": "68386",
          "name": "Zimmersheim",
          "population": 1080,
          "updatedAt": "2019-12-12T21:17:03.863Z"
        },
        {
          "ACL": null,
          "adminCode": "84",
          "cityId": 2967203,
          "country": "France",
          "countryCode": "FR",
          "createdAt": "2019-12-12T21:17:03.867Z",
          "featureCode": "PPLA3",
          "id": "yGG9QPMJ2L",
          "location": {
            "latitude": 45.13333,
            "longitude": 4.11667
          },
          "muni": "433",
          "muniSub": "43268",
          "name": "Yssingeaux",
          "population": 7286,
          "updatedAt": "2019-12-12T21:17:03.867Z"
        }
      ]
    }
  }
}