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
910
0
910
  • DatabaseDatabase
  • GraphQL API PlaygroundAPI Playground
  • Get Started GuideGet Started
  • IssuesIssues
  • ContributorsContributors
  • Database
    Database
    Get Started Guide
    Get Started
    Issues
    Issues
    Contributors
    Contributors

All BES

This GraphQL query fetches All BES


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 allBES {
      bES (skip: 0, limit: 3) {
        results {
          ACL
          accuracy
          adminCode1
          adminCode2
          adminCode3
          adminName1
          adminName2
          adminName3
          countryCode
          createdAt
          geoPosition {
            latitude
            longitude
          }
          id
          placeName
          postalCode
          updatedAt
        }
      }
    }
{
  "data": {
    "bES": {
      "results": [
        {
          "ACL": null,
          "accuracy": "4",
          "adminCode1": "BRU",
          "adminCode2": "BRU",
          "adminCode3": "21",
          "adminName1": "Bruxelles-Capitale",
          "adminName2": "Bruxelles (19 communes)",
          "adminName3": "Arrondissement Brussel-Hoofdstad",
          "countryCode": "BE",
          "createdAt": "2020-02-21T13:43:31.385Z",
          "geoPosition": {
            "latitude": 50.8504,
            "longitude": 4.3488
          },
          "id": "ZhyedBeVQw",
          "placeName": "Bruxelles",
          "postalCode": "1000",
          "updatedAt": "2020-02-21T13:43:31.385Z"
        },
        {
          "ACL": null,
          "accuracy": "4",
          "adminCode1": "BRU",
          "adminCode2": "BRU",
          "adminCode3": "21",
          "adminName1": "Bruxelles-Capitale",
          "adminName2": "Bruxelles (19 communes)",
          "adminName3": "Arrondissement Brussel-Hoofdstad",
          "countryCode": "BE",
          "createdAt": "2020-02-21T13:43:31.385Z",
          "geoPosition": {
            "latitude": 50.8362,
            "longitude": 4.3145
          },
          "id": "jiFwsXylyL",
          "placeName": "Anderlecht",
          "postalCode": "1070",
          "updatedAt": "2020-02-21T13:43:31.385Z"
        },
        {
          "ACL": null,
          "accuracy": "4",
          "adminCode1": "BRU",
          "adminCode2": "BRU",
          "adminCode3": "21",
          "adminName1": "Bruxelles-Capitale",
          "adminName2": "Bruxelles (19 communes)",
          "adminName3": "Arrondissement Brussel-Hoofdstad",
          "countryCode": "BE",
          "createdAt": "2020-02-21T13:43:31.385Z",
          "geoPosition": {
            "latitude": 50.8707,
            "longitude": 4.3153
          },
          "id": "bRIvxlJoHC",
          "placeName": "Ganshoren",
          "postalCode": "1083",
          "updatedAt": "2020-02-21T13:43:31.385Z"
        }
      ]
    }
  }
}