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

  1. Back4App
  2. USA Cities by State
Public

88
250
88
250
  • DatabaseDatabase
  • GraphQL API PlaygroundAPI Playground
  • Get Started GuideGet Started
  • IssuesIssues
  • ContributorsContributors
  • Database
    Database
    Get Started Guide
    Get Started
    Issues
    Issues
    Contributors
    Contributors

All WAS

This GraphQL query fetches All WAS


0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
query allWAS {
      wAS (skip: 0, limit: 3) {
        results {
          ACL
          adminCode
          cityId
          containingState {
            id
          }
          country
          createdAt
          featureCode
          id
          location {
            latitude
            longitude
          }
          muni
          muniSub
          name
          population
          updatedAt
        }
      }
    }
{
  "data": {
    "wAS": {
      "results": [
        {
          "ACL": null,
          "adminCode": "WA",
          "cityId": 5555235,
          "containingState": {
            "id": "o0QtVjQxuP"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:45:30.536Z",
          "featureCode": "PPL",
          "id": "OpZtXiraNv",
          "location": {
            "latitude": 47.32621,
            "longitude": -122.18151
          },
          "muni": null,
          "muniSub": null,
          "name": "Lea Hill",
          "population": 13182,
          "updatedAt": "2019-12-11T12:45:30.536Z"
        },
        {
          "ACL": null,
          "adminCode": "WA",
          "cityId": 5785933,
          "containingState": {
            "id": "o0QtVjQxuP"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:45:30.536Z",
          "featureCode": "PPLA2",
          "id": "eWNyvMBSA7",
          "location": {
            "latitude": 46.33933,
            "longitude": -117.04821
          },
          "muni": null,
          "muniSub": null,
          "name": "Asotin",
          "population": 1282,
          "updatedAt": "2019-12-11T12:45:30.536Z"
        },
        {
          "ACL": null,
          "adminCode": "WA",
          "cityId": 5785909,
          "containingState": {
            "id": "o0QtVjQxuP"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:45:30.536Z",
          "featureCode": "PPL",
          "id": "mIjfOJ0QlT",
          "location": {
            "latitude": 47.29954,
            "longitude": -122.62069
          },
          "muni": null,
          "muniSub": null,
          "name": "Artondale",
          "population": 12653,
          "updatedAt": "2019-12-11T12:45:30.536Z"
        }
      ]
    }
  }
}