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

  1. Back4App
  2. 🇻🇪 Venezuela
Public

11
10
11
10
  • 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": "25",
          "cityId": 3481364,
          "country": "Venezuela",
          "countryCode": "VE",
          "createdAt": "2019-12-14T18:45:44.560Z",
          "featureCode": "PPLA3",
          "id": "ihEDQBRYed",
          "location": {
            "latitude": 10.43337,
            "longitude": -66.98313
          },
          "muni": null,
          "name": "Caricuao",
          "population": 0,
          "updatedAt": "2019-12-14T18:45:44.560Z"
        },
        {
          "ACL": null,
          "adminCode": "07",
          "cityId": 3481456,
          "country": "Venezuela",
          "countryCode": "VE",
          "createdAt": "2019-12-14T18:45:44.560Z",
          "featureCode": "PPLA2",
          "id": "1XNLclbFkN",
          "location": {
            "latitude": 10.10861,
            "longitude": -68.0793
          },
          "muni": null,
          "name": "Tocuyito",
          "population": 0,
          "updatedAt": "2019-12-14T18:45:44.560Z"
        },
        {
          "ACL": null,
          "adminCode": "02",
          "cityId": 3486270,
          "country": "Venezuela",
          "countryCode": "VE",
          "createdAt": "2019-12-14T18:45:44.560Z",
          "featureCode": "PPLA2",
          "id": "HWrABMsECU",
          "location": {
            "latitude": 9.43889,
            "longitude": -64.47278
          },
          "muni": null,
          "name": "Anaco",
          "population": 117596,
          "updatedAt": "2019-12-14T18:45:44.560Z"
        }
      ]
    }
  }
}