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 TXES

This GraphQL query fetches All TXES


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 allTXES {
      tXES (skip: 0, limit: 3) {
        results {
          ACL
          adminCode
          cityId
          containingState {
            id
          }
          country
          createdAt
          featureCode
          id
          location {
            latitude
            longitude
          }
          muni
          name
          population
          updatedAt
        }
      }
    }
{
  "data": {
    "tXES": {
      "results": [
        {
          "ACL": null,
          "adminCode": "TX",
          "cityId": 4670300,
          "containingState": {
            "id": "TeYTrkkQ3i"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:44:43.948Z",
          "featureCode": "PPL",
          "id": "R4PSmfqzqV",
          "location": {
            "latitude": 33.10317,
            "longitude": -96.67055
          },
          "muni": null,
          "name": "Allen",
          "population": 98143,
          "updatedAt": "2019-12-11T12:44:43.948Z"
        },
        {
          "ACL": null,
          "adminCode": "TX",
          "cityId": 4670527,
          "containingState": {
            "id": "TeYTrkkQ3i"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:44:43.948Z",
          "featureCode": "PPL",
          "id": "mnghxuV5uM",
          "location": {
            "latitude": 31.65045,
            "longitude": -95.07272
          },
          "muni": null,
          "name": "Alto",
          "population": 1223,
          "updatedAt": "2019-12-11T12:44:43.948Z"
        },
        {
          "ACL": null,
          "adminCode": "TX",
          "cityId": 4669581,
          "containingState": {
            "id": "TeYTrkkQ3i"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:44:43.948Z",
          "featureCode": "PPL",
          "id": "VrHgq6LqWp",
          "location": {
            "latitude": 28.44193,
            "longitude": -99.76033
          },
          "muni": null,
          "name": "Asherton",
          "population": 1084,
          "updatedAt": "2019-12-11T12:44:43.948Z"
        }
      ]
    }
  }
}