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 WIS

This GraphQL query fetches All WIS


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 allWIS {
      wIS (skip: 0, limit: 3) {
        results {
          ACL
          adminCode
          cityId
          containingState {
            id
          }
          country
          createdAt
          featureCode
          id
          location {
            latitude
            longitude
          }
          muni
          name
          population
          updatedAt
        }
      }
    }
{
  "data": {
    "wIS": {
      "results": [
        {
          "ACL": null,
          "adminCode": "WI",
          "cityId": 5243553,
          "containingState": {
            "id": "Up8mnjQWCI"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:45:46.308Z",
          "featureCode": "PPL",
          "id": "tC1wzhyVaM",
          "location": {
            "latitude": 43.95608,
            "longitude": -89.81818
          },
          "muni": "00275",
          "name": "Adams",
          "population": 1893,
          "updatedAt": "2019-12-11T12:45:46.308Z"
        },
        {
          "ACL": null,
          "adminCode": "WI",
          "cityId": 5243712,
          "containingState": {
            "id": "Up8mnjQWCI"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:45:46.308Z",
          "featureCode": "PPL",
          "id": "8NCvrQzbbU",
          "location": {
            "latitude": 44.60889,
            "longitude": -87.43259
          },
          "muni": "01000",
          "name": "Algoma",
          "population": 3094,
          "updatedAt": "2019-12-11T12:45:46.308Z"
        },
        {
          "ACL": null,
          "adminCode": "WI",
          "cityId": 5244010,
          "containingState": {
            "id": "Up8mnjQWCI"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:45:46.308Z",
          "featureCode": "PPLA2",
          "id": "yfNx8mS9mE",
          "location": {
            "latitude": 45.14025,
            "longitude": -89.15234
          },
          "muni": "02250",
          "name": "Antigo",
          "population": 7869,
          "updatedAt": "2019-12-11T12:45:46.308Z"
        }
      ]
    }
  }
}