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

  1. Back4App
  2. USA Cities by State
Public

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

All AKS

This GraphQL query fetches All AKS


0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
query allAKS {
      aKS (skip: 0, limit: 3) {
        results {
          ACL
          adminCode
          cityId
          containingState {
            id
          }
          country
          createdAt
          featureCode
          id
          location {
            latitude
            longitude
          }
          name
          population
          updatedAt
        }
      }
    }
{
  "data": {
    "aKS": {
      "results": [
        {
          "ACL": null,
          "adminCode": "AK",
          "cityId": 5861769,
          "containingState": {
            "id": "EsQf83wAdn"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:38:26.401Z",
          "featureCode": "PPL",
          "id": "3kfVQCAedk",
          "location": {
            "latitude": 64.84722,
            "longitude": -148.01444
          },
          "name": "Ester",
          "population": 2422,
          "updatedAt": "2019-12-11T12:38:26.401Z"
        },
        {
          "ACL": null,
          "adminCode": "AK",
          "cityId": 5859888,
          "containingState": {
            "id": "EsQf83wAdn"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:38:26.401Z",
          "featureCode": "PPL",
          "id": "E3qtoZMsJx",
          "location": {
            "latitude": 60.5432,
            "longitude": -145.75867
          },
          "name": "Cordova",
          "population": 2196,
          "updatedAt": "2019-12-11T12:38:26.401Z"
        },
        {
          "ACL": null,
          "adminCode": "AK",
          "cityId": 5861897,
          "containingState": {
            "id": "EsQf83wAdn"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:38:26.401Z",
          "featureCode": "PPLA2",
          "id": "StQl4PpEuW",
          "location": {
            "latitude": 64.83778,
            "longitude": -147.71639
          },
          "name": "Fairbanks",
          "population": 32325,
          "updatedAt": "2019-12-11T12:38:26.401Z"
        }
      ]
    }
  }
}