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 MOS

This GraphQL query fetches All MOS


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 allMOS {
      mOS (skip: 0, limit: 3) {
        results {
          ACL
          adminCode
          cityId
          containingState {
            id
          }
          country
          createdAt
          featureCode
          id
          location {
            latitude
            longitude
          }
          muni
          name
          population
          updatedAt
        }
      }
    }
{
  "data": {
    "mOS": {
      "results": [
        {
          "ACL": null,
          "adminCode": "MO",
          "cityId": 4376350,
          "containingState": {
            "id": "rTBUNWGyIq"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:41:48.813Z",
          "featureCode": "PPL",
          "id": "YoMVgbZsV0",
          "location": {
            "latitude": 38.702,
            "longitude": -90.31678
          },
          "muni": "52814",
          "name": "Bel-Nor",
          "population": 1482,
          "updatedAt": "2019-12-11T12:41:48.813Z"
        },
        {
          "ACL": null,
          "adminCode": "MO",
          "cityId": 4374993,
          "containingState": {
            "id": "rTBUNWGyIq"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:41:48.813Z",
          "featureCode": "PPL",
          "id": "KZoKfYdE5J",
          "location": {
            "latitude": 38.19058,
            "longitude": -94.02939
          },
          "muni": "01504",
          "name": "Appleton City",
          "population": 1092,
          "updatedAt": "2019-12-11T12:41:48.813Z"
        },
        {
          "ACL": null,
          "adminCode": "MO",
          "cityId": 4375040,
          "containingState": {
            "id": "rTBUNWGyIq"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:41:48.813Z",
          "featureCode": "PPL",
          "id": "DhB82UHNSi",
          "location": {
            "latitude": 38.48168,
            "longitude": -94.35439
          },
          "muni": "02620",
          "name": "Archie",
          "population": 1201,
          "updatedAt": "2019-12-11T12:41:48.813Z"
        }
      ]
    }
  }
}