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

  1. Back4App
  2. USA Cities by State
Public

84
247
84
247
  • DatabaseDatabase
  • GraphQL API PlaygroundAPI Playground
  • Get Started GuideGet Started
  • IssuesIssues
  • ContributorsContributors
  • Database
    Database
    Get Started Guide
    Get Started
    Issues
    Issues
    Contributors
    Contributors

All OHS

This GraphQL query fetches All OHS


0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
query allOHS {
      oHS (skip: 0, limit: 3) {
        results {
          ACL
          adminCode
          cityId
          containingState {
            id
          }
          country
          createdAt
          featureCode
          id
          location {
            latitude
            longitude
          }
          muni
          name
          population
          updatedAt
        }
      }
    }
{
  "data": {
    "oHS": {
      "results": [
        {
          "ACL": null,
          "adminCode": "OH",
          "cityId": 4506474,
          "containingState": {
            "id": "MZUDnuoFAB"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:43:14.130Z",
          "featureCode": "PPL",
          "id": "Kv3gn8PjdX",
          "location": {
            "latitude": 39.54785,
            "longitude": -81.63957
          },
          "muni": "81774",
          "name": "Beverly",
          "population": 1308,
          "updatedAt": "2019-12-11T12:43:14.130Z"
        },
        {
          "ACL": null,
          "adminCode": "OH",
          "cityId": 4505716,
          "containingState": {
            "id": "MZUDnuoFAB"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:43:14.129Z",
          "featureCode": "PPL",
          "id": "lfBOy3pwAn",
          "location": {
            "latitude": 39.84534,
            "longitude": -82.60072
          },
          "muni": "43120",
          "name": "Baltimore",
          "population": 2970,
          "updatedAt": "2019-12-11T12:43:14.129Z"
        },
        {
          "ACL": null,
          "adminCode": "OH",
          "cityId": 4506487,
          "containingState": {
            "id": "MZUDnuoFAB"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:43:14.130Z",
          "featureCode": "PPL",
          "id": "GbcLXSTlGa",
          "location": {
            "latitude": 39.96895,
            "longitude": -82.93768
          },
          "muni": "06278",
          "name": "Bexley",
          "population": 13654,
          "updatedAt": "2019-12-11T12:43:14.130Z"
        }
      ]
    }
  }
}