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 SDS

This GraphQL query fetches All SDS


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 allSDS {
      sDS (skip: 0, limit: 3) {
        results {
          ACL
          adminCode
          cityId
          containingState {
            id
          }
          country
          createdAt
          featureCode
          id
          location {
            latitude
            longitude
          }
          muni
          name
          population
          updatedAt
        }
      }
    }
{
  "data": {
    "sDS": {
      "results": [
        {
          "ACL": null,
          "adminCode": "SD",
          "cityId": 5226901,
          "containingState": {
            "id": "ysbNGIjsGM"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:44:31.808Z",
          "featureCode": "PPLA2",
          "id": "EJIaFnBbNA",
          "location": {
            "latitude": 44.87774,
            "longitude": -97.73314
          },
          "muni": "12180",
          "name": "Clark",
          "population": 1050,
          "updatedAt": "2019-12-11T12:44:31.808Z"
        },
        {
          "ACL": null,
          "adminCode": "SD",
          "cityId": 5226523,
          "containingState": {
            "id": "ysbNGIjsGM"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:44:31.808Z",
          "featureCode": "PPLA2",
          "id": "Q9zMwH62ml",
          "location": {
            "latitude": 45.79162,
            "longitude": -97.75094
          },
          "muni": "07380",
          "name": "Britton",
          "population": 1242,
          "updatedAt": "2019-12-11T12:44:31.808Z"
        },
        {
          "ACL": null,
          "adminCode": "SD",
          "cityId": 5227270,
          "containingState": {
            "id": "ysbNGIjsGM"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:44:31.808Z",
          "featureCode": "PPL",
          "id": "IboOFXsF2F",
          "location": {
            "latitude": 43.82608,
            "longitude": -96.70616
          },
          "muni": "15980",
          "name": "Dell Rapids",
          "population": 3706,
          "updatedAt": "2019-12-11T12:44:31.808Z"
        }
      ]
    }
  }
}