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 INS

This GraphQL query fetches All INS


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 allINS {
      iNS (skip: 0, limit: 3) {
        results {
          ACL
          adminCode
          cityId
          containingState {
            id
          }
          country
          createdAt
          featureCode
          id
          location {
            latitude
            longitude
          }
          muni
          name
          population
          updatedAt
        }
      }
    }
{
  "data": {
    "iNS": {
      "results": [
        {
          "ACL": null,
          "adminCode": "IN",
          "cityId": 4254944,
          "containingState": {
            "id": "EhyjmgGokx"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:40:23.632Z",
          "featureCode": "PPL",
          "id": "DcT6yL79Ah",
          "location": {
            "latitude": 39.21839,
            "longitude": -84.85606
          },
          "muni": "49464",
          "name": "Bright",
          "population": 5693,
          "updatedAt": "2019-12-11T12:40:23.632Z"
        },
        {
          "ACL": null,
          "adminCode": "IN",
          "cityId": 4255056,
          "containingState": {
            "id": "EhyjmgGokx"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:40:23.632Z",
          "featureCode": "PPL",
          "id": "FzJd4NRAqz",
          "location": {
            "latitude": 39.84338,
            "longitude": -86.39777
          },
          "muni": "43794",
          "name": "Brownsburg",
          "population": 24996,
          "updatedAt": "2019-12-11T12:40:23.632Z"
        },
        {
          "ACL": null,
          "adminCode": "IN",
          "cityId": 4254884,
          "containingState": {
            "id": "EhyjmgGokx"
          },
          "country": "US",
          "createdAt": "2019-12-11T12:40:23.632Z",
          "featureCode": "PPLA2",
          "id": "lGDGZ1HnBj",
          "location": {
            "latitude": 39.52365,
            "longitude": -87.12502
          },
          "muni": "07192",
          "name": "Brazil",
          "population": 8109,
          "updatedAt": "2019-12-11T12:40:23.632Z"
        }
      ]
    }
  }
}