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

  1. Back4App
  2. USA Cities by State
Public

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

All NDS

This GraphQL query fetches All NDS


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 allNDS {
      nDS (skip: 0, limit: 3) {
        results {
          ACL
          adminCode
          cityId
          containingState {
            id
          }
          country
          createdAt
          featureCode
          id
          location {
            latitude
            longitude
          }
          muni
          name
          population
          updatedAt
        }
      }
    }
{
  "data": {
    "nDS": {
      "results": [
        {
          "ACL": null,
          "adminCode": "ND",
          "cityId": 5059734,
          "containingState": {
            "id": "AWICKsUg90"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:43:09.904Z",
          "featureCode": "PPL",
          "id": "mxdwko2UDG",
          "location": {
            "latitude": 46.75886,
            "longitude": -96.9037
          },
          "muni": "38900",
          "name": "Horace",
          "population": 2545,
          "updatedAt": "2019-12-11T12:43:09.904Z"
        },
        {
          "ACL": null,
          "adminCode": "ND",
          "cityId": 5058534,
          "containingState": {
            "id": "AWICKsUg90"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:43:09.904Z",
          "featureCode": "PPLA2",
          "id": "y3J5MZkTnI",
          "location": {
            "latitude": 48.48667,
            "longitude": -99.20986
          },
          "muni": "11860",
          "name": "Cando",
          "population": 1122,
          "updatedAt": "2019-12-11T12:43:09.904Z"
        },
        {
          "ACL": null,
          "adminCode": "ND",
          "cityId": 5059052,
          "containingState": {
            "id": "AWICKsUg90"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:43:09.904Z",
          "featureCode": "PPLA2",
          "id": "waH0mxoTT1",
          "location": {
            "latitude": 46.00275,
            "longitude": -98.52705
          },
          "muni": "23220",
          "name": "Ellendale",
          "population": 1299,
          "updatedAt": "2019-12-11T12:43:09.904Z"
        }
      ]
    }
  }
}