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 DKS

This GraphQL query fetches All DKS


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 allDKS {
      dKS (skip: 0, limit: 3) {
        results {
          ACL
          accuracy
          adminCode1
          adminCode2
          adminCode3
          adminName1
          adminName2
          adminName3
          countryCode
          createdAt
          geoPosition {
            latitude
            longitude
          }
          id
          placeName
          postalCode
          updatedAt
        }
      }
    }
{
  "data": {
    "dKS": {
      "results": [
        {
          "ACL": null,
          "accuracy": "6",
          "adminCode1": "18",
          "adminCode2": "615",
          "adminCode3": "",
          "adminName1": "Region Midtjylland",
          "adminName2": "Horsens Kommune",
          "adminName3": "",
          "countryCode": "DK",
          "createdAt": "2020-02-21T13:12:51.587Z",
          "geoPosition": {
            "latitude": 55.7573,
            "longitude": 10.271
          },
          "id": "MqO7xFz8Ls",
          "placeName": "Endelave",
          "postalCode": "8789",
          "updatedAt": "2020-02-21T13:12:51.587Z"
        },
        {
          "ACL": null,
          "accuracy": "6",
          "adminCode1": "20",
          "adminCode2": "316",
          "adminCode3": "",
          "adminName1": "Region Sjælland",
          "adminName2": "Holbæk Kommune",
          "adminName3": "",
          "countryCode": "DK",
          "createdAt": "2020-02-21T13:12:51.587Z",
          "geoPosition": {
            "latitude": 55.7718,
            "longitude": 11.8163
          },
          "id": "gtupGTbbaa",
          "placeName": "Orø",
          "postalCode": "4305",
          "updatedAt": "2020-02-21T13:12:51.587Z"
        },
        {
          "ACL": null,
          "accuracy": "6",
          "adminCode1": "21",
          "adminCode2": "430",
          "adminCode3": "",
          "adminName1": "Region Syddanmark",
          "adminName2": "Faaborg-Midtfyn Kommune",
          "adminName3": "",
          "countryCode": "DK",
          "createdAt": "2020-02-21T13:12:51.587Z",
          "geoPosition": {
            "latitude": 55.0439,
            "longitude": 10.1473
          },
          "id": "lT6SpRZTXT",
          "placeName": "Lyø",
          "postalCode": "5601",
          "updatedAt": "2020-02-21T13:12:51.587Z"
        }
      ]
    }
  }
}