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 AZS

This GraphQL query fetches All AZS


0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
query allAZS {
      aZS (skip: 0, limit: 3) {
        results {
          ACL
          adminCode
          cityId
          containingState {
            id
          }
          country
          createdAt
          featureCode
          id
          location {
            latitude
            longitude
          }
          name
          population
          updatedAt
        }
      }
    }
{
  "data": {
    "aZS": {
      "results": [
        {
          "ACL": null,
          "adminCode": "AZ",
          "cityId": 5288786,
          "containingState": {
            "id": "8enbDj7PMY"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:38:30.187Z",
          "featureCode": "PPL",
          "id": "I1Ybon1PJJ",
          "location": {
            "latitude": 32.29785,
            "longitude": -110.9187
          },
          "name": "Catalina Foothills",
          "population": 50796,
          "updatedAt": "2019-12-11T12:38:30.187Z"
        },
        {
          "ACL": null,
          "adminCode": "AZ",
          "cityId": 5288858,
          "containingState": {
            "id": "8enbDj7PMY"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:38:30.187Z",
          "featureCode": "PPL",
          "id": "DQYIWJ4Iig",
          "location": {
            "latitude": 33.83333,
            "longitude": -111.95083
          },
          "name": "Cave Creek",
          "population": 5341,
          "updatedAt": "2019-12-11T12:38:30.187Z"
        },
        {
          "ACL": null,
          "adminCode": "AZ",
          "cityId": 5287262,
          "containingState": {
            "id": "8enbDj7PMY"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:38:30.186Z",
          "featureCode": "PPL",
          "id": "yMecrm931Y",
          "location": {
            "latitude": 33.37032,
            "longitude": -112.58378
          },
          "name": "Buckeye",
          "population": 50876,
          "updatedAt": "2019-12-11T12:38:30.186Z"
        }
      ]
    }
  }
}