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

All WFS

This GraphQL query fetches All WFS


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 allWFS {
      wFS (skip: 0, limit: 3) {
        results {
          ACL
          accuracy
          adminCode1
          adminCode2
          adminCode3
          adminName1
          adminName2
          adminName3
          countryCode
          createdAt
          geoPosition {
            latitude
            longitude
          }
          id
          placeName
          postalCode
          updatedAt
        }
      }
    }
{
  "data": {
    "wFS": {
      "results": [
        {
          "ACL": null,
          "accuracy": "5",
          "adminCode1": "98613",
          "adminCode2": "",
          "adminCode3": "",
          "adminName1": "Circonscription d'Uvéa",
          "adminName2": "",
          "adminName3": "",
          "countryCode": "WF",
          "createdAt": "2020-02-21T13:04:44.608Z",
          "geoPosition": {
            "latitude": -13.2988,
            "longitude": -176.2205
          },
          "id": "dpMJC80nzh",
          "placeName": "Uvéa",
          "postalCode": "98600",
          "updatedAt": "2020-02-21T13:04:44.608Z"
        },
        {
          "ACL": null,
          "accuracy": "5",
          "adminCode1": "98612",
          "adminCode2": "",
          "adminCode3": "",
          "adminName1": "Circonscription de Sigave",
          "adminName2": "",
          "adminName3": "",
          "countryCode": "WF",
          "createdAt": "2020-02-21T13:04:44.608Z",
          "geoPosition": {
            "latitude": -14.2667,
            "longitude": -178.1667
          },
          "id": "YKjbOBvBDA",
          "placeName": "Sigave",
          "postalCode": "98620",
          "updatedAt": "2020-02-21T13:04:44.608Z"
        },
        {
          "ACL": null,
          "accuracy": "5",
          "adminCode1": "98611",
          "adminCode2": "",
          "adminCode3": "",
          "adminName1": "Circonscription d'Alo",
          "adminName2": "",
          "adminName3": "",
          "countryCode": "WF",
          "createdAt": "2020-02-21T13:04:44.608Z",
          "geoPosition": {
            "latitude": -14.3066,
            "longitude": -178.1188
          },
          "id": "vSVL1Fk6gM",
          "placeName": "Alo",
          "postalCode": "98610",
          "updatedAt": "2020-02-21T13:04:44.608Z"
        }
      ]
    }
  }
}