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 GPS

This GraphQL query fetches All GPS


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 allGPS {
      gPS (skip: 0, limit: 3) {
        results {
          ACL
          accuracy
          adminCode1
          adminCode2
          adminCode3
          adminName1
          adminName2
          adminName3
          countryCode
          createdAt
          geoPosition {
            latitude
            longitude
          }
          id
          placeName
          postalCode
          updatedAt
        }
      }
    }
{
  "data": {
    "gPS": {
      "results": [
        {
          "ACL": null,
          "accuracy": "5",
          "adminCode1": "GP",
          "adminCode2": "971",
          "adminCode3": "9711",
          "adminName1": "Guadeloupe",
          "adminName2": "Guadeloupe",
          "adminName3": "Arrondissement de la Basse-Terre",
          "countryCode": "GP",
          "createdAt": "2020-02-21T13:05:21.056Z",
          "geoPosition": {
            "latitude": 15.9985,
            "longitude": -61.7255
          },
          "id": "bqYMGx49nm",
          "placeName": "Basse-Terre",
          "postalCode": "97023 CEDEX",
          "updatedAt": "2020-02-21T13:05:21.056Z"
        },
        {
          "ACL": null,
          "accuracy": "5",
          "adminCode1": "GP",
          "adminCode2": "971",
          "adminCode3": "9711",
          "adminName1": "Guadeloupe",
          "adminName2": "Guadeloupe",
          "adminName3": "Arrondissement de la Basse-Terre",
          "countryCode": "GP",
          "createdAt": "2020-02-21T13:05:21.056Z",
          "geoPosition": {
            "latitude": 16.1914,
            "longitude": -61.5916
          },
          "id": "gBGFCHFLfC",
          "placeName": "Petit-Bourg",
          "postalCode": "97082 CEDEX",
          "updatedAt": "2020-02-21T13:05:21.056Z"
        },
        {
          "ACL": null,
          "accuracy": "5",
          "adminCode1": "GP",
          "adminCode2": "971",
          "adminCode3": "9712",
          "adminName1": "Guadeloupe",
          "adminName2": "Guadeloupe",
          "adminName3": "Arrondissement de Pointe-à-Pitre",
          "countryCode": "GP",
          "createdAt": "2020-02-21T13:05:21.056Z",
          "geoPosition": {
            "latitude": 16.271,
            "longitude": -61.5045
          },
          "id": "Wt2HCtyaIv",
          "placeName": "Les Abymes",
          "postalCode": "97001 CEDEX",
          "updatedAt": "2020-02-21T13:05:21.056Z"
        }
      ]
    }
  }
}