https://github.com/zhangyu1818/typegraphql-crud-demo
https://github.com/zhangyu1818/typegraphql-crud-demo
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/zhangyu1818/typegraphql-crud-demo
- Owner: zhangyu1818
- Created: 2019-04-19T08:58:37.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-19T09:00:23.000Z (about 6 years ago)
- Last Synced: 2025-01-29T08:44:58.731Z (5 months ago)
- Language: TypeScript
- Size: 33.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
simple CRUD demo for typegraphql
query
```graphql
{
all:todolist{
id
content
completed
}
filter:todolist(completed:false){
id
content
completed
}
}
```
mutation
```graphql
mutation{
addTodo(content:"react"){
id
content
completed
}
removeTodos(ids:[""]){
id
content
completed
}
}
```