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 IAS

This GraphQL query fetches All IAS


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 allIAS {
      iAS (skip: 0, limit: 3) {
        results {
          ACL
          adminCode
          cityId
          containingState {
            id
          }
          country
          createdAt
          featureCode
          id
          location {
            latitude
            longitude
          }
          muni
          name
          population
          updatedAt
        }
      }
    }
{
  "data": {
    "iAS": {
      "results": [
        {
          "ACL": null,
          "adminCode": "IA",
          "cityId": 4847375,
          "containingState": {
            "id": "vrOCmmXATc"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:40:31.531Z",
          "featureCode": "PPL",
          "id": "1tkBoSezME",
          "location": {
            "latitude": 41.99694,
            "longitude": -91.86213
          },
          "muni": "91455",
          "name": "Atkins",
          "population": 1795,
          "updatedAt": "2019-12-11T12:40:31.531Z"
        },
        {
          "ACL": null,
          "adminCode": "IA",
          "cityId": 4846499,
          "containingState": {
            "id": "vrOCmmXATc"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:40:31.530Z",
          "featureCode": "PPL",
          "id": "CqXepNhKcL",
          "location": {
            "latitude": 42.82888,
            "longitude": -96.55948
          },
          "muni": "93462",
          "name": "Akron",
          "population": 1450,
          "updatedAt": "2019-12-11T12:40:31.530Z"
        },
        {
          "ACL": null,
          "adminCode": "IA",
          "cityId": 4846398,
          "containingState": {
            "id": "vrOCmmXATc"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:40:31.530Z",
          "featureCode": "PPLA2",
          "id": "nL2zg4twLi",
          "location": {
            "latitude": 41.61443,
            "longitude": -94.01745
          },
          "muni": "90018",
          "name": "Adel",
          "population": 4245,
          "updatedAt": "2019-12-11T12:40:31.530Z"
        }
      ]
    }
  }
}