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

  1. Back4App
  2. USA Cities by State
Public

20
62
20
62
  • DatabaseDatabase
  • GraphQL API PlaygroundAPI Playground
  • Get Started GuideGet Started
  • IssuesIssues
  • ContributorsContributors
  • Database
    Database
    Get Started Guide
    Get Started
    Issues
    Issues
    Contributors
    Contributors

All PAS

This GraphQL query fetches All PAS


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 allPAS {
      pAS (skip: 0, limit: 3) {
        results {
          ACL
          adminCode
          cityId
          containingState {
            id
          }
          country
          createdAt
          featureCode
          id
          location {
            latitude
            longitude
          }
          muni
          name
          population
          updatedAt
        }
      }
    }
{
  "data": {
    "pAS": {
      "results": [
        {
          "ACL": null,
          "adminCode": "PA",
          "cityId": 4557148,
          "containingState": {
            "id": "sG9gN7KNng"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:43:42.319Z",
          "featureCode": "PPL",
          "id": "YF5p3Ky0mj",
          "location": {
            "latitude": 39.89011,
            "longitude": -75.47548
          },
          "muni": "13232",
          "name": "Chester Heights",
          "population": 2626,
          "updatedAt": "2019-12-11T12:43:42.319Z"
        },
        {
          "ACL": null,
          "adminCode": "PA",
          "cityId": 4557247,
          "containingState": {
            "id": "sG9gN7KNng"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:43:42.319Z",
          "featureCode": "PPL",
          "id": "cf5yBQdAZC",
          "location": {
            "latitude": 39.98316,
            "longitude": -75.82384
          },
          "muni": "14712",
          "name": "Coatesville",
          "population": 13148,
          "updatedAt": "2019-12-11T12:43:42.319Z"
        },
        {
          "ACL": null,
          "adminCode": "PA",
          "cityId": 4556702,
          "containingState": {
            "id": "sG9gN7KNng"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:43:42.319Z",
          "featureCode": "PPL",
          "id": "MDDnh1cR0P",
          "location": {
            "latitude": 39.83011,
            "longitude": -75.44158
          },
          "muni": "78776",
          "name": "Boothwyn",
          "population": 4933,
          "updatedAt": "2019-12-11T12:43:42.319Z"
        }
      ]
    }
  }
}