An open API service indexing awesome lists of open source software.

https://github.com/zhangyu1818/typegraphql-crud-demo


https://github.com/zhangyu1818/typegraphql-crud-demo

Last synced: 3 months ago
JSON representation

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
}
}
```