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

  1. Back4App
  2. USA Cities by State
Public

86
249
86
249
  • DatabaseDatabase
  • GraphQL API PlaygroundAPI Playground
  • Get Started GuideGet Started
  • IssuesIssues
  • ContributorsContributors
  • Database
    Database
    Get Started Guide
    Get Started
    Issues
    Issues
    Contributors
    Contributors

All NHS

This GraphQL query fetches All NHS


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 allNHS {
      nHS (skip: 0, limit: 3) {
        results {
          ACL
          adminCode
          cityId
          containingState {
            id
          }
          country
          createdAt
          featureCode
          id
          location {
            latitude
            longitude
          }
          muni
          name
          population
          updatedAt
        }
      }
    }
{
  "data": {
    "nHS": {
      "results": [
        {
          "ACL": null,
          "adminCode": "NH",
          "cityId": 5084165,
          "containingState": {
            "id": "WvJ7fKCAFv"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:42:10.098Z",
          "featureCode": "PPL",
          "id": "kBRwZbR6Wo",
          "location": {
            "latitude": 43.07786,
            "longitude": -71.27673
          },
          "muni": "09300",
          "name": "Candia",
          "population": 4405,
          "updatedAt": "2019-12-11T12:42:10.098Z"
        },
        {
          "ACL": null,
          "adminCode": "NH",
          "cityId": 5082595,
          "containingState": {
            "id": "WvJ7fKCAFv"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:42:10.097Z",
          "featureCode": "PPL",
          "id": "yNpEcNsToO",
          "location": {
            "latitude": 43.14897,
            "longitude": -72.36064
          },
          "muni": "00820",
          "name": "Alstead",
          "population": 2071,
          "updatedAt": "2019-12-11T12:42:10.097Z"
        },
        {
          "ACL": null,
          "adminCode": "NH",
          "cityId": 5083023,
          "containingState": {
            "id": "WvJ7fKCAFv"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:42:10.098Z",
          "featureCode": "PPL",
          "id": "HfwvQ6zx09",
          "location": {
            "latitude": 43.22286,
            "longitude": -71.04701
          },
          "muni": "03460",
          "name": "Barrington",
          "population": 8417,
          "updatedAt": "2019-12-11T12:42:10.098Z"
        }
      ]
    }
  }
}