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

  1. Back4App
  2. USA Cities by State
Public

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

All NVS

This GraphQL query fetches All NVS


0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
query allNVS {
      nVS (skip: 0, limit: 3) {
        results {
          ACL
          adminCode
          cityId
          containingState {
            id
          }
          country
          createdAt
          featureCode
          id
          location {
            latitude
            longitude
          }
          name
          population
          updatedAt
        }
      }
    }
{
  "data": {
    "nVS": {
      "results": [
        {
          "ACL": null,
          "adminCode": "NV",
          "cityId": 5502015,
          "containingState": {
            "id": "sgelvO1GOc"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:42:06.817Z",
          "featureCode": "PPL",
          "id": "mWfHrcp2XD",
          "location": {
            "latitude": 39.68019,
            "longitude": -119.97659
          },
          "name": "Cold Springs",
          "population": 8544,
          "updatedAt": "2019-12-11T12:42:06.817Z"
        },
        {
          "ACL": null,
          "adminCode": "NV",
          "cityId": 5501344,
          "containingState": {
            "id": "sgelvO1GOc"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:42:06.817Z",
          "featureCode": "PPLA",
          "id": "swa2WwGREl",
          "location": {
            "latitude": 39.1638,
            "longitude": -119.7674
          },
          "name": "Carson City",
          "population": 54521,
          "updatedAt": "2019-12-11T12:42:06.817Z"
        },
        {
          "ACL": null,
          "adminCode": "NV",
          "cityId": 5503694,
          "containingState": {
            "id": "sgelvO1GOc"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:42:06.817Z",
          "featureCode": "PPLA2",
          "id": "n1Bz2jm0ZJ",
          "location": {
            "latitude": 39.24744,
            "longitude": -114.88863
          },
          "name": "Ely",
          "population": 4134,
          "updatedAt": "2019-12-11T12:42:06.817Z"
        }
      ]
    }
  }
}