This GraphQL query fetches All FLS
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 allFLS { fLS (skip: 0, limit: 3) { results { ACL adminCode cityId containingState { id } country createdAt featureCode id location { latitude longitude } muni name population updatedAt } } }
{ "data": { "fLS": { "results": [ { "ACL": null, "adminCode": "FL", "cityId": 4146302, "containingState": { "id": "S5QgTkXtsl" }, "country": "US", "createdAt": "2019-12-11T12:39:33.552Z", "featureCode": "PPL", "id": "ikmwz5rBzl", "location": { "latitude": 30.04913, "longitude": -81.82149 }, "muni": null, "name": "Asbury Lake", "population": 8700, "updatedAt": "2019-12-11T12:39:33.552Z" }, { "ACL": null, "adminCode": "FL", "cityId": 4146148, "containingState": { "id": "S5QgTkXtsl" }, "country": "US", "createdAt": "2019-12-11T12:39:33.552Z", "featureCode": "PPLA2", "id": "5PDn93aYzR", "location": { "latitude": 29.726, "longitude": -84.9856 }, "muni": null, "name": "Apalachicola", "population": 2281, "updatedAt": "2019-12-11T12:39:33.552Z" }, { "ACL": null, "adminCode": "FL", "cityId": 4145941, "containingState": { "id": "S5QgTkXtsl" }, "country": "US", "createdAt": "2019-12-11T12:39:33.552Z", "featureCode": "PPL", "id": "vmDoluvpie", "location": { "latitude": 28.66111, "longitude": -81.36562 }, "muni": null, "name": "Altamonte Springs", "population": 43159, "updatedAt": "2019-12-11T12:39:33.552Z" } ] } } }