The Database Hub | Back4App
The Database Hub | Back4App
How it works
  • Log In
  • Sign Up

  1. Back4App
  2. USA Cities by State
Public

20
62
20
62
  • DatabaseDatabase
  • GraphQL API PlaygroundAPI Playground
  • Get Started GuideGet Started
  • IssuesIssues
  • ContributorsContributors
  • Database
    Database
    Get Started Guide
    Get Started
    Issues
    Issues
    Contributors
    Contributors

All MIS

This GraphQL query fetches All MIS


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 allMIS {
      mIS (skip: 0, limit: 3) {
        results {
          ACL
          adminCode
          cityId
          containingState {
            id
          }
          country
          createdAt
          featureCode
          id
          location {
            latitude
            longitude
          }
          muni
          name
          population
          updatedAt
        }
      }
    }
{
  "data": {
    "mIS": {
      "results": [
        {
          "ACL": null,
          "adminCode": "MI",
          "cityId": 4984802,
          "containingState": {
            "id": "IHzI4q4isB"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:41:23.545Z",
          "featureCode": "PPLA2",
          "id": "brUFeoLRtd",
          "location": {
            "latitude": 43.90112,
            "longitude": -85.85173
          },
          "muni": "85060",
          "name": "Baldwin",
          "population": 1159,
          "updatedAt": "2019-12-11T12:41:23.545Z"
        },
        {
          "ACL": null,
          "adminCode": "MI",
          "cityId": 4983989,
          "containingState": {
            "id": "IHzI4q4isB"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:41:23.545Z",
          "featureCode": "PPLA2",
          "id": "ZI4PAQRNQp",
          "location": {
            "latitude": 42.5292,
            "longitude": -85.8553
          },
          "muni": "01260",
          "name": "Allegan",
          "population": 5071,
          "updatedAt": "2019-12-11T12:41:23.545Z"
        },
        {
          "ACL": null,
          "adminCode": "MI",
          "cityId": 4983970,
          "containingState": {
            "id": "IHzI4q4isB"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:41:23.545Z",
          "featureCode": "PPL",
          "id": "VYqYcaYNzQ",
          "location": {
            "latitude": 42.61858,
            "longitude": -82.5323
          },
          "muni": "01180",
          "name": "Algonac",
          "population": 4055,
          "updatedAt": "2019-12-11T12:41:23.545Z"
        }
      ]
    }
  }
}