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 WVS

This GraphQL query fetches All WVS


0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
query allWVS {
      wVS (skip: 0, limit: 3) {
        results {
          ACL
          adminCode
          cityId
          containingState {
            id
          }
          country
          createdAt
          featureCode
          id
          location {
            latitude
            longitude
          }
          name
          population
          updatedAt
        }
      }
    }
{
  "data": {
    "wVS": {
      "results": [
        {
          "ACL": null,
          "adminCode": "WV",
          "cityId": 4798532,
          "containingState": {
            "id": "AKdVd6tEu1"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:45:40.829Z",
          "featureCode": "PPL",
          "id": "lPL9mNYrmX",
          "location": {
            "latitude": 39.0251,
            "longitude": -79.93563
          },
          "name": "Belington",
          "population": 1933,
          "updatedAt": "2019-12-11T12:45:40.829Z"
        },
        {
          "ACL": null,
          "adminCode": "WV",
          "cityId": 4798697,
          "containingState": {
            "id": "AKdVd6tEu1"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:45:40.829Z",
          "featureCode": "PPLA2",
          "id": "Dq36byA9Sd",
          "location": {
            "latitude": 39.6248,
            "longitude": -78.22472
          },
          "name": "Berkeley Springs",
          "population": 766,
          "updatedAt": "2019-12-11T12:45:40.829Z"
        },
        {
          "ACL": null,
          "adminCode": "WV",
          "cityId": 4799532,
          "containingState": {
            "id": "AKdVd6tEu1"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:45:40.829Z",
          "featureCode": "PPL",
          "id": "H4s60zOqhO",
          "location": {
            "latitude": 39.26369,
            "longitude": -81.62929
          },
          "name": "Blennerhassett",
          "population": 3089,
          "updatedAt": "2019-12-11T12:45:40.829Z"
        }
      ]
    }
  }
}