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

  1. Back4App
  2. USA Cities by State
Public

87
249
87
249
  • DatabaseDatabase
  • GraphQL API PlaygroundAPI Playground
  • Get Started GuideGet Started
  • IssuesIssues
  • ContributorsContributors
  • Database
    Database
    Get Started Guide
    Get Started
    Issues
    Issues
    Contributors
    Contributors

All MDS

This GraphQL query fetches All MDS


0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
query allMDS {
      mDS (skip: 0, limit: 3) {
        results {
          ACL
          adminCode
          cityId
          containingState {
            id
          }
          country
          createdAt
          featureCode
          id
          location {
            latitude
            longitude
          }
          name
          population
          updatedAt
        }
      }
    }
{
  "data": {
    "mDS": {
      "results": [
        {
          "ACL": null,
          "adminCode": "MD",
          "cityId": 4347800,
          "containingState": {
            "id": "xff1jBOJOA"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:41:05.644Z",
          "featureCode": "PPL",
          "id": "cytMTZFTZa",
          "location": {
            "latitude": 39.23316,
            "longitude": -76.63663
          },
          "name": "Baltimore Highlands",
          "population": 7019,
          "updatedAt": "2019-12-11T12:41:05.644Z"
        },
        {
          "ACL": null,
          "adminCode": "MD",
          "cityId": 4347839,
          "containingState": {
            "id": "xff1jBOJOA"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:41:05.644Z",
          "featureCode": "PPL",
          "id": "KqFaM4rOPq",
          "location": {
            "latitude": 39.3726,
            "longitude": -77.43526
          },
          "name": "Ballenger Creek",
          "population": 18274,
          "updatedAt": "2019-12-11T12:41:05.644Z"
        },
        {
          "ACL": null,
          "adminCode": "MD",
          "cityId": 4348353,
          "containingState": {
            "id": "xff1jBOJOA"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:41:05.645Z",
          "featureCode": "PPL",
          "id": "JeFVMBsBmC",
          "location": {
            "latitude": 39.03483,
            "longitude": -76.90747
          },
          "name": "Beltsville",
          "population": 16772,
          "updatedAt": "2019-12-11T12:41:05.645Z"
        }
      ]
    }
  }
}