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 CLS

This GraphQL query fetches All CLS


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 allCLS {
      cLS (skip: 0, limit: 3) {
        results {
          ACL
          accuracy
          adminCode1
          adminCode2
          adminCode3
          adminName1
          adminName2
          adminName3
          countryCode
          createdAt
          geoPosition {
            latitude
            longitude
          }
          id
          placeName
          postalCode
          updatedAt
        }
      }
    }
{
  "data": {
    "cLS": {
      "results": [
        {
          "ACL": null,
          "accuracy": "4",
          "adminCode1": "01",
          "adminCode2": "55",
          "adminCode3": "05504",
          "adminName1": "Región de Valparaíso",
          "adminName2": "Provincia de Quillota",
          "adminName3": "La Cruz",
          "countryCode": "CL",
          "createdAt": "2020-02-21T13:05:53.350Z",
          "geoPosition": {
            "latitude": -32.8251,
            "longitude": -71.2413
          },
          "id": "PrnSmM7jQy",
          "placeName": "La Cruz",
          "postalCode": "2280000",
          "updatedAt": "2020-02-21T13:05:53.350Z"
        },
        {
          "ACL": null,
          "accuracy": "4",
          "adminCode1": "01",
          "adminCode2": "54",
          "adminCode3": "05404",
          "adminName1": "Región de Valparaíso",
          "adminName2": "Petorca Province",
          "adminName3": "Petorca",
          "countryCode": "CL",
          "createdAt": "2020-02-21T13:05:53.350Z",
          "geoPosition": {
            "latitude": -32.1903,
            "longitude": -70.8704
          },
          "id": "BbI6oKYptl",
          "placeName": "Petorca",
          "postalCode": "2040000",
          "updatedAt": "2020-02-21T13:05:53.350Z"
        },
        {
          "ACL": null,
          "accuracy": "4",
          "adminCode1": "01",
          "adminCode2": "54",
          "adminCode3": "05401",
          "adminName1": "Región de Valparaíso",
          "adminName2": "Petorca Province",
          "adminName3": "La Ligua",
          "countryCode": "CL",
          "createdAt": "2020-02-21T13:05:53.350Z",
          "geoPosition": {
            "latitude": -32.3537,
            "longitude": -71.2721
          },
          "id": "dFy889hZR6",
          "placeName": "La Ligua",
          "postalCode": "2030000",
          "updatedAt": "2020-02-21T13:05:53.350Z"
        }
      ]
    }
  }
}