The Database Hub | Back4App
The Database Hub | Back4App
How it works
  • Log In
  • Sign Up

  1. Back4App
  2. 🇧🇷 Brazilian Zip Codes Database
Public

89
107
89
107
  • DatabaseDatabase
  • GraphQL API PlaygroundAPI Playground
  • Get Started GuideGet Started
  • IssuesIssues
  • ContributorsContributors
  • Database
    Database
    Get Started Guide
    Get Started
    Issues
    Issues
    Contributors
    Contributors

All CEPS

This GraphQL query fetches All CEPS


0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
query allCEPS {
      cEPS (skip: 0, limit: 3) {
        results {
          ACL
          CEP
          bairro
          cidade
          createdAt
          estado
          id
          info
          logradouro
          numero
          updatedAt
        }
      }
    }
{
  "data": {
    "cEPS": {
      "results": [
        {
          "ACL": null,
          "CEP": "01001000",
          "bairro": "Sé",
          "cidade": "São Paulo",
          "createdAt": "2019-12-17T18:31:37.240Z",
          "estado": "SP",
          "id": "b74XHFEeVf",
          "info": null,
          "logradouro": "Praça da Sé - lado ímpar",
          "numero": null,
          "updatedAt": "2019-12-17T18:31:37.240Z"
        },
        {
          "ACL": null,
          "CEP": "01002010",
          "bairro": "Sé",
          "cidade": "São Paulo",
          "createdAt": "2019-12-17T18:31:37.241Z",
          "estado": "SP",
          "id": "9glIZw1AP4",
          "info": null,
          "logradouro": "Praça do Patriarca",
          "numero": null,
          "updatedAt": "2019-12-17T18:31:37.241Z"
        },
        {
          "ACL": null,
          "CEP": "01001900",
          "bairro": "Sé",
          "cidade": "São Paulo",
          "createdAt": "2019-12-17T18:31:37.241Z",
          "estado": "SP",
          "id": "2fEuvsYM9J",
          "info": " UNESP - Universidade Estadual Júlio de Mesquita Filho",
          "logradouro": "Praça da Sé",
          "numero": 108,
          "updatedAt": "2019-12-17T18:31:37.241Z"
        }
      ]
    }
  }
}