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

  1. Back4App
  2. 🇾🇪 Yemen
Public

15
12
15
12
  • 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
query allCities {
      cities (skip: 0, limit: 3) {
        results {
          ACL
          adminCode
          cityId
          country
          countryCode
          createdAt
          featureCode
          id
          location {
            latitude
            longitude
          }
          name
          population
          updatedAt
        }
      }
    }
{
  "data": {
    "cities": {
      "results": [
        {
          "ACL": null,
          "adminCode": "25",
          "cityId": 30735,
          "country": "Yemen",
          "countryCode": "YE",
          "createdAt": "2019-12-14T19:14:37.702Z",
          "featureCode": "PPLA2",
          "id": "djgtgreY62",
          "location": {
            "latitude": 13.13452,
            "longitude": 43.78636
          },
          "name": "Ash Shuqayrah",
          "population": 0,
          "updatedAt": "2019-12-14T19:14:37.702Z"
        },
        {
          "ACL": null,
          "adminCode": "27",
          "cityId": 30788,
          "country": "Yemen",
          "countryCode": "YE",
          "createdAt": "2019-12-14T19:14:37.702Z",
          "featureCode": "PPLA2",
          "id": "czeHyHRB24",
          "location": {
            "latitude": 14.67199,
            "longitude": 43.81827
          },
          "name": "Aḑ Ḑil‘",
          "population": 0,
          "updatedAt": "2019-12-14T19:14:37.702Z"
        },
        {
          "ACL": null,
          "adminCode": "16",
          "cityId": 34821,
          "country": "Yemen",
          "countryCode": "YE",
          "createdAt": "2019-12-14T19:14:37.702Z",
          "featureCode": "PPLA2",
          "id": "SW23u7HfSa",
          "location": {
            "latitude": 15.0676,
            "longitude": 43.64213
          },
          "name": "Matwaḩ",
          "population": 0,
          "updatedAt": "2019-12-14T19:14:37.702Z"
        }
      ]
    }
  }
}