https://github.com/fraidev/graphql_poc
https://github.com/fraidev/graphql_poc
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fraidev/graphql_poc
- Owner: fraidev
- Created: 2018-08-26T01:54:18.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-08-26T19:32:04.000Z (over 6 years ago)
- Last Synced: 2025-02-12T14:29:56.260Z (3 months ago)
- Language: C#
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GraphQL_PoC
https://localhost:5001/ui/playground
### Exemplos de Consulta
```
{
aluno(cpf:"11111111111") {
nome
}
}
```
```
{
professor(cpf:"11111111113") {
nome
}
}
```