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

  1. Back4App
  2. USA Cities by State
Public

87
249
87
249
  • DatabaseDatabase
  • GraphQL API PlaygroundAPI Playground
  • Get Started GuideGet Started
  • IssuesIssues
  • ContributorsContributors
  • Database
    Database
    Get Started Guide
    Get Started
    Issues
    Issues
    Contributors
    Contributors

All ALS

This GraphQL query fetches All ALS


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 allALS {
      aLS (skip: 0, limit: 3) {
        results {
          ACL
          adminCode
          cityId
          containingState {
            id
          }
          country
          createdAt
          featureCode
          id
          location {
            latitude
            longitude
          }
          muni
          muniSub
          name
          population
          updatedAt
        }
      }
    }
{
  "data": {
    "aLS": {
      "results": [
        {
          "ACL": null,
          "adminCode": "AL",
          "cityId": 4047198,
          "containingState": {
            "id": "opo6B57pvA"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:38:17.264Z",
          "featureCode": "PPL",
          "id": "by2reYfbUp",
          "location": {
            "latitude": 33.43428,
            "longitude": -86.94721
          },
          "muni": null,
          "muniSub": null,
          "name": "Brighton",
          "population": 2862,
          "updatedAt": "2019-12-11T12:38:17.264Z"
        },
        {
          "ACL": null,
          "adminCode": "AL",
          "cityId": 4050879,
          "containingState": {
            "id": "opo6B57pvA"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:38:17.264Z",
          "featureCode": "PPL",
          "id": "rYw8WuFqL5",
          "location": {
            "latitude": 32.49264,
            "longitude": -86.19052
          },
          "muni": null,
          "muniSub": null,
          "name": "Blue Ridge",
          "population": 1341,
          "updatedAt": "2019-12-11T12:38:17.264Z"
        },
        {
          "ACL": null,
          "adminCode": "AL",
          "cityId": 4046319,
          "containingState": {
            "id": "opo6B57pvA"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:38:17.264Z",
          "featureCode": "PPL",
          "id": "uegumVp25n",
          "location": {
            "latitude": 30.40352,
            "longitude": -88.24852
          },
          "muni": null,
          "muniSub": null,
          "name": "Bayou La Batre",
          "population": 2621,
          "updatedAt": "2019-12-11T12:38:17.264Z"
        }
      ]
    }
  }
}