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 VTS

This GraphQL query fetches All VTS


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 allVTS {
      vTS (skip: 0, limit: 3) {
        results {
          ACL
          adminCode
          cityId
          containingState {
            id
          }
          country
          createdAt
          featureCode
          id
          location {
            latitude
            longitude
          }
          muni
          name
          population
          updatedAt
        }
      }
    }
{
  "data": {
    "vTS": {
      "results": [
        {
          "ACL": null,
          "adminCode": "VT",
          "cityId": 5234920,
          "containingState": {
            "id": "imOAsKJceZ"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:45:13.648Z",
          "featureCode": "PPLX",
          "id": "QBAfxOx5R8",
          "location": {
            "latitude": 43.51618,
            "longitude": -72.96983
          },
          "muni": "14500",
          "name": "Clarendon",
          "population": 2489,
          "updatedAt": "2019-12-11T12:45:13.648Z"
        },
        {
          "ACL": null,
          "adminCode": "VT",
          "cityId": 5235952,
          "containingState": {
            "id": "imOAsKJceZ"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:45:13.648Z",
          "featureCode": "PPL",
          "id": "JBVGeweStR",
          "location": {
            "latitude": 44.49061,
            "longitude": -73.11096
          },
          "muni": "24175",
          "name": "Essex Junction",
          "population": 10111,
          "updatedAt": "2019-12-11T12:45:13.648Z"
        },
        {
          "ACL": null,
          "adminCode": "VT",
          "cityId": 5234101,
          "containingState": {
            "id": "imOAsKJceZ"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:45:13.648Z",
          "featureCode": "PPL",
          "id": "LNNwdPrqA3",
          "location": {
            "latitude": 43.79812,
            "longitude": -73.08761
          },
          "muni": "07750",
          "name": "Brandon",
          "population": 1648,
          "updatedAt": "2019-12-11T12:45:13.648Z"
        }
      ]
    }
  }
}