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 LAS

This GraphQL query fetches All LAS


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 allLAS {
      lAS (skip: 0, limit: 3) {
        results {
          ACL
          adminCode
          cityId
          containingState {
            id
          }
          country
          createdAt
          featureCode
          id
          location {
            latitude
            longitude
          }
          muni
          name
          population
          updatedAt
        }
      }
    }
{
  "data": {
    "lAS": {
      "results": [
        {
          "ACL": null,
          "adminCode": "LA",
          "cityId": 4314956,
          "containingState": {
            "id": "6hCWq2CnpH"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:40:51.197Z",
          "featureCode": "PPL",
          "id": "GEFg2E4jO4",
          "location": {
            "latitude": 29.95437,
            "longitude": -90.00535
          },
          "muni": null,
          "name": "Arabi",
          "population": 3635,
          "updatedAt": "2019-12-11T12:40:51.197Z"
        },
        {
          "ACL": null,
          "adminCode": "LA",
          "cityId": 4315312,
          "containingState": {
            "id": "6hCWq2CnpH"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:40:51.197Z",
          "featureCode": "PPL",
          "id": "eKcs8j5ytx",
          "location": {
            "latitude": 30.58824,
            "longitude": -91.16816
          },
          "muni": null,
          "name": "Baker",
          "population": 13695,
          "updatedAt": "2019-12-11T12:40:51.197Z"
        },
        {
          "ACL": null,
          "adminCode": "LA",
          "cityId": 4314409,
          "containingState": {
            "id": "6hCWq2CnpH"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:40:51.197Z",
          "featureCode": "PPL",
          "id": "c3GJQQiftk",
          "location": {
            "latitude": 30.3538,
            "longitude": -91.26539
          },
          "muni": null,
          "name": "Addis",
          "population": 4589,
          "updatedAt": "2019-12-11T12:40:51.197Z"
        }
      ]
    }
  }
}