https://github.com/andremicheletti/cep-graphql
GraphQL server built for coding training purposes
https://github.com/andremicheletti/cep-graphql
Last synced: 4 months ago
JSON representation
GraphQL server built for coding training purposes
- Host: GitHub
- URL: https://github.com/andremicheletti/cep-graphql
- Owner: AndreMicheletti
- Created: 2020-03-19T18:12:36.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-03-19T18:19:34.000Z (over 5 years ago)
- Last Synced: 2025-03-24T10:48:30.449Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Via CEP - GraphQL server
Um servidor GraphQL simples que consulta a api do https://viacep.com.br
## Requisitos
- `node` versão 13 ou maior
## Como testar
- clone o repositório
- instale as dependencias `npm install`
- rode o servidor `npm start`
- acesse com um navegador a url local `localhost:4000`
- faça uma query simples```
query {
buscaCEP(cep: "01001000") {
cep
logradouro
bairro
complemento
}
}
```