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

  1. Back4App
  2. πŸ‡¦πŸ‡· Argentina
Public

14
10
14
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": "08",
          "cityId": 3427420,
          "country": "Argentina",
          "countryCode": "AR",
          "createdAt": "2019-12-12T18:48:04.200Z",
          "featureCode": "PPL",
          "id": "U2O6JzKM7g",
          "location": {
            "latitude": -31.23101,
            "longitude": -59.985
          },
          "muni": null,
          "name": "Villa Hernandarias",
          "population": 5375,
          "updatedAt": "2019-12-12T18:48:04.200Z"
        },
        {
          "ACL": null,
          "adminCode": "06",
          "cityId": 3427279,
          "country": "Argentina",
          "countryCode": "AR",
          "createdAt": "2019-12-12T18:48:04.200Z",
          "featureCode": "PPL",
          "id": "u9pAWkzukF",
          "location": {
            "latitude": -29.46914,
            "longitude": -56.81841
          },
          "muni": null,
          "name": "YapeyΓΊ",
          "population": 2124,
          "updatedAt": "2019-12-12T18:48:04.200Z"
        },
        {
          "ACL": null,
          "adminCode": "08",
          "cityId": 3427454,
          "country": "Argentina",
          "countryCode": "AR",
          "createdAt": "2019-12-12T18:48:04.201Z",
          "featureCode": "PPL",
          "id": "UZxkIdCLPE",
          "location": {
            "latitude": -30.79567,
            "longitude": -57.91257
          },
          "muni": null,
          "name": "Villa del Rosario",
          "population": 3488,
          "updatedAt": "2019-12-12T18:48:04.201Z"
        }
      ]
    }
  }
}