This GraphQL query fetches All MNS
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 allMNS { mNS (skip: 0, limit: 3) { results { ACL adminCode cityId containingState { id } country createdAt featureCode id location { latitude longitude } muni name population updatedAt } } }
{ "data": { "mNS": { "results": [ { "ACL": null, "adminCode": "MN", "cityId": 5016108, "containingState": { "id": "bAN0DOEARY" }, "country": "US", "createdAt": "2019-12-11T12:41:34.281Z", "featureCode": "PPLA2", "id": "MDnUsJlv08", "location": { "latitude": 45.88524, "longitude": -95.37754 }, "muni": "00928", "name": "Alexandria", "population": 11843, "updatedAt": "2019-12-11T12:41:34.281Z" }, { "ACL": null, "adminCode": "MN", "cityId": 5016450, "containingState": { "id": "bAN0DOEARY" }, "country": "US", "createdAt": "2019-12-11T12:41:34.281Z", "featureCode": "PPLA2", "id": "872GOCrCQO", "location": { "latitude": 45.19774, "longitude": -93.38718 }, "muni": "01720", "name": "Anoka", "population": 17350, "updatedAt": "2019-12-11T12:41:34.281Z" }, { "ACL": null, "adminCode": "MN", "cityId": 5016024, "containingState": { "id": "bAN0DOEARY" }, "country": "US", "createdAt": "2019-12-11T12:41:34.281Z", "featureCode": "PPLA2", "id": "rLGa9ZeW3N", "location": { "latitude": 43.64801, "longitude": -93.36827 }, "muni": "00694", "name": "Albert Lea", "population": 17674, "updatedAt": "2019-12-11T12:41:34.281Z" } ] } } }