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 RIS

This GraphQL query fetches All RIS


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 allRIS {
      rIS (skip: 0, limit: 3) {
        results {
          ACL
          adminCode
          cityId
          containingState {
            id
          }
          country
          createdAt
          featureCode
          id
          location {
            latitude
            longitude
          }
          muni
          name
          population
          updatedAt
        }
      }
    }
{
  "data": {
    "rIS": {
      "results": [
        {
          "ACL": null,
          "adminCode": "RI",
          "cityId": 5221341,
          "containingState": {
            "id": "HKmnyxpE9v"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:44:08.508Z",
          "featureCode": "PPL",
          "id": "tRgElc2s2f",
          "location": {
            "latitude": 41.89066,
            "longitude": -71.39228
          },
          "muni": "14140",
          "name": "Central Falls",
          "population": 19303,
          "updatedAt": "2019-12-11T12:44:08.508Z"
        },
        {
          "ACL": null,
          "adminCode": "RI",
          "cityId": 5222476,
          "containingState": {
            "id": "HKmnyxpE9v"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:44:08.508Z",
          "featureCode": "PPL",
          "id": "o1MrCFpSdO",
          "location": {
            "latitude": 41.87121,
            "longitude": -71.55201
          },
          "muni": "66200",
          "name": "Greenville",
          "population": 8658,
          "updatedAt": "2019-12-11T12:44:08.508Z"
        },
        {
          "ACL": null,
          "adminCode": "RI",
          "cityId": 5221703,
          "containingState": {
            "id": "HKmnyxpE9v"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:44:08.508Z",
          "featureCode": "PPL",
          "id": "rBL7RHZXVo",
          "location": {
            "latitude": 41.96677,
            "longitude": -71.43284
          },
          "muni": "20080",
          "name": "Cumberland",
          "population": 34843,
          "updatedAt": "2019-12-11T12:44:08.508Z"
        }
      ]
    }
  }
}