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 CRS

This GraphQL query fetches All CRS


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 allCRS {
      cRS (skip: 0, limit: 3) {
        results {
          ACL
          accuracy
          adminCode1
          adminCode2
          adminCode3
          adminName1
          adminName2
          adminName3
          countryCode
          createdAt
          geoPosition {
            latitude
            longitude
          }
          id
          placeName
          postalCode
          updatedAt
        }
      }
    }
{
  "data": {
    "cRS": {
      "results": [
        {
          "ACL": null,
          "accuracy": "6",
          "adminCode1": "01",
          "adminCode2": "201",
          "adminCode3": "20113",
          "adminName1": "Provincia de Alajuela",
          "adminName2": "Alajuela",
          "adminName3": "Garita",
          "countryCode": "CR",
          "createdAt": "2020-02-21T13:06:12.216Z",
          "geoPosition": {
            "latitude": 9.9875,
            "longitude": -84.3035
          },
          "id": "ex4DXmJ3EK",
          "placeName": "Garita",
          "postalCode": "20113",
          "updatedAt": "2020-02-21T13:06:12.216Z"
        },
        {
          "ACL": null,
          "accuracy": "6",
          "adminCode1": "01",
          "adminCode2": "201",
          "adminCode3": "20108",
          "adminName1": "Provincia de Alajuela",
          "adminName2": "Alajuela",
          "adminName3": "San Rafael",
          "countryCode": "CR",
          "createdAt": "2020-02-21T13:06:12.216Z",
          "geoPosition": {
            "latitude": 9.9598,
            "longitude": -84.2278
          },
          "id": "HpW0VKkG6B",
          "placeName": "San Rafael",
          "postalCode": "20108",
          "updatedAt": "2020-02-21T13:06:12.216Z"
        },
        {
          "ACL": null,
          "accuracy": "6",
          "adminCode1": "01",
          "adminCode2": "201",
          "adminCode3": "20110",
          "adminName1": "Provincia de Alajuela",
          "adminName2": "Alajuela",
          "adminName3": "Desamparados",
          "countryCode": "CR",
          "createdAt": "2020-02-21T13:06:12.216Z",
          "geoPosition": {
            "latitude": 10.0275,
            "longitude": -84.185
          },
          "id": "jjMSx55Gpj",
          "placeName": "Desamparados",
          "postalCode": "20110",
          "updatedAt": "2020-02-21T13:06:12.216Z"
        }
      ]
    }
  }
}