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 NJS

This GraphQL query fetches All NJS


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 allNJS {
      nJS (skip: 0, limit: 3) {
        results {
          ACL
          adminCode
          cityId
          containingState {
            id
          }
          country
          createdAt
          featureCode
          id
          location {
            latitude
            longitude
          }
          muni
          name
          population
          updatedAt
        }
      }
    }
{
  "data": {
    "nJS": {
      "results": [
        {
          "ACL": null,
          "adminCode": "NJ",
          "cityId": 4500696,
          "containingState": {
            "id": "GvGSfTcawU"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:42:15.436Z",
          "featureCode": "PPL",
          "id": "Ay4igYTL0l",
          "location": {
            "latitude": 39.55928,
            "longitude": -74.2432
          },
          "muni": "03940",
          "name": "Beach Haven",
          "population": 1172,
          "updatedAt": "2019-12-11T12:42:15.436Z"
        },
        {
          "ACL": null,
          "adminCode": "NJ",
          "cityId": 4500491,
          "containingState": {
            "id": "GvGSfTcawU"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:42:15.436Z",
          "featureCode": "PPL",
          "id": "MzY7HpGrmk",
          "location": {
            "latitude": 39.56095,
            "longitude": -75.36242
          },
          "muni": "00880",
          "name": "Alloway",
          "population": 1402,
          "updatedAt": "2019-12-11T12:42:15.436Z"
        },
        {
          "ACL": null,
          "adminCode": "NJ",
          "cityId": 4500845,
          "containingState": {
            "id": "GvGSfTcawU"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:42:15.436Z",
          "featureCode": "PPL",
          "id": "ctky3NTh4G",
          "location": {
            "latitude": 39.80234,
            "longitude": -75.06406
          },
          "muni": "26760",
          "name": "Blackwood",
          "population": 4545,
          "updatedAt": "2019-12-11T12:42:15.436Z"
        }
      ]
    }
  }
}