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 MTS

This GraphQL query fetches All MTS


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 allMTS {
      mTS (skip: 0, limit: 3) {
        results {
          ACL
          adminCode
          cityId
          containingState {
            id
          }
          country
          createdAt
          featureCode
          id
          location {
            latitude
            longitude
          }
          muni
          name
          population
          updatedAt
        }
      }
    }
{
  "data": {
    "mTS": {
      "results": [
        {
          "ACL": null,
          "adminCode": "MT",
          "cityId": 5637146,
          "containingState": {
            "id": "BnFDezgmYE"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:41:57.612Z",
          "featureCode": "PPLA2",
          "id": "oQgqcu4Grl",
          "location": {
            "latitude": 46.12854,
            "longitude": -112.94226
          },
          "muni": null,
          "name": "Anaconda",
          "population": 9417,
          "updatedAt": "2019-12-11T12:41:57.612Z"
        },
        {
          "ACL": null,
          "adminCode": "MT",
          "cityId": 5644844,
          "containingState": {
            "id": "BnFDezgmYE"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:41:57.613Z",
          "featureCode": "PPLA2",
          "id": "nuH8F0ZCEI",
          "location": {
            "latitude": 47.81245,
            "longitude": -112.18363
          },
          "muni": null,
          "name": "Choteau",
          "population": 1696,
          "updatedAt": "2019-12-11T12:41:57.613Z"
        },
        {
          "ACL": null,
          "adminCode": "MT",
          "cityId": 5640193,
          "containingState": {
            "id": "BnFDezgmYE"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:41:57.612Z",
          "featureCode": "PPL",
          "id": "LPEXgFCaeJ",
          "location": {
            "latitude": 45.28465,
            "longitude": -111.36829
          },
          "muni": null,
          "name": "Big Sky",
          "population": 2308,
          "updatedAt": "2019-12-11T12:41:57.612Z"
        }
      ]
    }
  }
}