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 ARS

This GraphQL query fetches All ARS


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 allARS {
      aRS (skip: 0, limit: 3) {
        results {
          ACL
          adminCode
          cityId
          containingState {
            id
          }
          country
          createdAt
          featureCode
          id
          location {
            latitude
            longitude
          }
          muni
          name
          population
          updatedAt
        }
      }
    }
{
  "data": {
    "aRS": {
      "results": [
        {
          "ACL": null,
          "adminCode": "AR",
          "cityId": 4099837,
          "containingState": {
            "id": "egMJvGAYYI"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:38:36.372Z",
          "featureCode": "PPLA2",
          "id": "yNhGDUwBhb",
          "location": {
            "latitude": 36.22396,
            "longitude": -91.60848
          },
          "muni": "93174",
          "name": "Ash Flat",
          "population": 1064,
          "updatedAt": "2019-12-11T12:38:36.372Z"
        },
        {
          "ACL": null,
          "adminCode": "AR",
          "cityId": 4099194,
          "containingState": {
            "id": "egMJvGAYYI"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:38:36.372Z",
          "featureCode": "PPL",
          "id": "JbVGU7Q81u",
          "location": {
            "latitude": 34.62954,
            "longitude": -92.44127
          },
          "muni": "90300",
          "name": "Alexander",
          "population": 2848,
          "updatedAt": "2019-12-11T12:38:36.372Z"
        },
        {
          "ACL": null,
          "adminCode": "AR",
          "cityId": 4099673,
          "containingState": {
            "id": "egMJvGAYYI"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:38:36.372Z",
          "featureCode": "PPLA2",
          "id": "zCmtmEAt1r",
          "location": {
            "latitude": 33.60872,
            "longitude": -91.20678
          },
          "muni": "91341",
          "name": "Arkansas City",
          "population": 327,
          "updatedAt": "2019-12-11T12:38:36.372Z"
        }
      ]
    }
  }
}