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

  1. Back4App
  2. πŸ‡§πŸ‡΄ Bolivia
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
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": "08",
          "cityId": 3444105,
          "country": "Bolivia",
          "countryCode": "BO",
          "createdAt": "2019-12-12T18:56:40.976Z",
          "featureCode": "PPL",
          "id": "qgpazy3r7G",
          "location": {
            "latitude": -16.36667,
            "longitude": -58.4
          },
          "muni": "10400576",
          "muniSub": null,
          "name": "San MatΓ­as",
          "population": 6352,
          "updatedAt": "2019-12-12T18:56:40.976Z"
        },
        {
          "ACL": null,
          "adminCode": "09",
          "cityId": 3901178,
          "country": "Bolivia",
          "countryCode": "BO",
          "createdAt": "2019-12-12T18:56:40.976Z",
          "featureCode": "PPLA2",
          "id": "pHz0BKyvr7",
          "location": {
            "latitude": -22.01643,
            "longitude": -63.67753
          },
          "muni": null,
          "muniSub": null,
          "name": "Yacuiba",
          "population": 82803,
          "updatedAt": "2019-12-12T18:56:40.976Z"
        },
        {
          "ACL": null,
          "adminCode": "07",
          "cityId": 3901903,
          "country": "Bolivia",
          "countryCode": "BO",
          "createdAt": "2019-12-12T18:56:40.977Z",
          "featureCode": "PPL",
          "id": "UDFgN82NDx",
          "location": {
            "latitude": -20.45967,
            "longitude": -66.82503
          },
          "muni": null,
          "muniSub": null,
          "name": "Uyuni",
          "population": 10293,
          "updatedAt": "2019-12-12T18:56:40.977Z"
        }
      ]
    }
  }
}