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" } ] } } }