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 ADS

This GraphQL query fetches All ADS


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 allADS {
      aDS (skip: 0, limit: 3) {
        results {
          ACL
          accuracy
          adminCode1
          adminCode2
          adminCode3
          adminName1
          adminName2
          adminName3
          countryCode
          createdAt
          geoPosition {
            latitude
            longitude
          }
          id
          placeName
          postalCode
          updatedAt
        }
      }
    }
{
  "data": {
    "aDS": {
      "results": [
        {
          "ACL": null,
          "accuracy": "6",
          "adminCode1": "05",
          "adminCode2": "",
          "adminCode3": "",
          "adminName1": "Ordino",
          "adminName2": "",
          "adminName3": "",
          "countryCode": "AD",
          "createdAt": "2020-02-21T13:04:46.070Z",
          "geoPosition": {
            "latitude": 42.6,
            "longitude": 1.55
          },
          "id": "4ZQoCfcuge",
          "placeName": "Ordino",
          "postalCode": "AD300",
          "updatedAt": "2020-02-21T13:04:46.070Z"
        },
        {
          "ACL": null,
          "accuracy": "6",
          "adminCode1": "07",
          "adminCode2": "",
          "adminCode3": "",
          "adminName1": "Andorra la Vella",
          "adminName2": "",
          "adminName3": "",
          "countryCode": "AD",
          "createdAt": "2020-02-21T13:04:46.070Z",
          "geoPosition": {
            "latitude": 42.5,
            "longitude": 1.5
          },
          "id": "4RDEridVi1",
          "placeName": "Andorra la Vella",
          "postalCode": "AD500",
          "updatedAt": "2020-02-21T13:04:46.070Z"
        },
        {
          "ACL": null,
          "accuracy": "6",
          "adminCode1": "06",
          "adminCode2": "",
          "adminCode3": "",
          "adminName1": "Sant Julià de Lòria",
          "adminName2": "",
          "adminName3": "",
          "countryCode": "AD",
          "createdAt": "2020-02-21T13:04:46.070Z",
          "geoPosition": {
            "latitude": 42.4667,
            "longitude": 1.5
          },
          "id": "LLu0vBXGKD",
          "placeName": "Sant Julià de Lòria",
          "postalCode": "AD600",
          "updatedAt": "2020-02-21T13:04:46.070Z"
        }
      ]
    }
  }
}