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

  1. Back4App
  2. ✉️ Zip and Postal Codes of All Countries
Public

0
904
0
904
  • DatabaseDatabase
  • GraphQL API PlaygroundAPI Playground
  • Get Started GuideGet Started
  • IssuesIssues
  • ContributorsContributors
  • Database
    Database
    Get Started Guide
    Get Started
    Issues
    Issues
    Contributors
    Contributors

All CHES

This GraphQL query fetches All CHES


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 allCHES {
      ches (skip: 0, limit: 3) {
        results {
          ACL
          accuracy
          adminCode1
          adminCode2
          adminCode3
          adminName1
          adminName2
          adminName3
          countryCode
          createdAt
          geoPosition {
            latitude
            longitude
          }
          id
          placeName
          postalCode
          updatedAt
        }
      }
    }
{
  "data": {
    "ches": {
      "results": [
        {
          "ACL": null,
          "accuracy": "4",
          "adminCode1": "AG",
          "adminCode2": "1901",
          "adminCode3": "4004",
          "adminName1": "Kanton Aargau",
          "adminName2": "Bezirk Aarau",
          "adminName3": "Densbüren",
          "countryCode": "CH",
          "createdAt": "2020-02-21T15:22:23.074Z",
          "geoPosition": {
            "latitude": 47.4526,
            "longitude": 8.0533
          },
          "id": "1GdiPQFR7W",
          "placeName": "Densbüren",
          "postalCode": "5026",
          "updatedAt": "2020-02-21T15:22:23.074Z"
        },
        {
          "ACL": null,
          "accuracy": "4",
          "adminCode1": "AG",
          "adminCode2": "1901",
          "adminCode3": "4005",
          "adminName1": "Kanton Aargau",
          "adminName2": "Bezirk Aarau",
          "adminName3": "Erlinsbach (AG)",
          "countryCode": "CH",
          "createdAt": "2020-02-21T15:22:23.073Z",
          "geoPosition": {
            "latitude": 47.4159,
            "longitude": 7.9764
          },
          "id": "b7Ovu5gRgP",
          "placeName": "Barmelweid",
          "postalCode": "5017",
          "updatedAt": "2020-02-21T15:22:23.073Z"
        },
        {
          "ACL": null,
          "accuracy": "4",
          "adminCode1": "AG",
          "adminCode2": "1901",
          "adminCode3": "4009",
          "adminName1": "Kanton Aargau",
          "adminName2": "Bezirk Aarau",
          "adminName3": "Muhen",
          "countryCode": "CH",
          "createdAt": "2020-02-21T15:22:23.074Z",
          "geoPosition": {
            "latitude": 47.3367,
            "longitude": 8.0541
          },
          "id": "vsERanak2p",
          "placeName": "Muhen",
          "postalCode": "5037",
          "updatedAt": "2020-02-21T15:22:23.074Z"
        }
      ]
    }
  }
}