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 SCS

This GraphQL query fetches All SCS


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 allSCS {
      sCS (skip: 0, limit: 3) {
        results {
          ACL
          adminCode
          cityId
          containingState {
            id
          }
          country
          createdAt
          featureCode
          id
          location {
            latitude
            longitude
          }
          muni
          name
          population
          updatedAt
        }
      }
    }
{
  "data": {
    "sCS": {
      "results": [
        {
          "ACL": null,
          "adminCode": "SC",
          "cityId": 4568985,
          "containingState": {
            "id": "YHPRQjvYpB"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:44:25.261Z",
          "featureCode": "PPLA2",
          "id": "Cf7mzseY26",
          "location": {
            "latitude": 34.17817,
            "longitude": -82.37901
          },
          "muni": null,
          "name": "Abbeville",
          "population": 5191,
          "updatedAt": "2019-12-11T12:44:25.261Z"
        },
        {
          "ACL": null,
          "adminCode": "SC",
          "cityId": 4050356,
          "containingState": {
            "id": "YHPRQjvYpB"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:44:25.261Z",
          "featureCode": "PPL",
          "id": "YMSV5Dy8Hc",
          "location": {
            "latitude": 34.22737,
            "longitude": -80.68925
          },
          "muni": null,
          "name": "Lugoff",
          "population": 7434,
          "updatedAt": "2019-12-11T12:44:25.261Z"
        },
        {
          "ACL": null,
          "adminCode": "SC",
          "cityId": 4569362,
          "containingState": {
            "id": "YHPRQjvYpB"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:44:25.261Z",
          "featureCode": "PPL",
          "id": "bqauTf2GPO",
          "location": {
            "latitude": 33.45128,
            "longitude": -79.5609
          },
          "muni": null,
          "name": "Andrews",
          "population": 2888,
          "updatedAt": "2019-12-11T12:44:25.261Z"
        }
      ]
    }
  }
}