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 CAS

This GraphQL query fetches All CAS


0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
query allCAS {
      cAS (skip: 0, limit: 3) {
        results {
          ACL
          adminCode
          cityId
          containingState {
            id
          }
          country
          createdAt
          featureCode
          id
          location {
            latitude
            longitude
          }
          name
          population
          updatedAt
        }
      }
    }
{
  "data": {
    "cAS": {
      "results": [
        {
          "ACL": null,
          "adminCode": "CA",
          "cityId": 5285018,
          "containingState": {
            "id": "n0CFSAKZ7z"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:38:42.309Z",
          "featureCode": "PPL",
          "id": "GHGQ65VCyR",
          "location": {
            "latitude": 38.7524,
            "longitude": -122.61499
          },
          "name": "Middletown",
          "population": 1323,
          "updatedAt": "2019-12-11T12:38:42.309Z"
        },
        {
          "ACL": null,
          "adminCode": "CA",
          "cityId": 5285182,
          "containingState": {
            "id": "n0CFSAKZ7z"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:38:42.309Z",
          "featureCode": "PPL",
          "id": "UUMDrCUSDC",
          "location": {
            "latitude": 35.13469,
            "longitude": -119.45623
          },
          "name": "South Taft",
          "population": 2169,
          "updatedAt": "2019-12-11T12:38:42.309Z"
        },
        {
          "ACL": null,
          "adminCode": "CA",
          "cityId": 5284832,
          "containingState": {
            "id": "n0CFSAKZ7z"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:38:42.309Z",
          "featureCode": "PPL",
          "id": "Uoxx1tuJ7K",
          "location": {
            "latitude": 38.88722,
            "longitude": -121.01472
          },
          "name": "Cool",
          "population": 4100,
          "updatedAt": "2019-12-11T12:38:42.309Z"
        }
      ]
    }
  }
}