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

https://github.com/defp/gqlgen-todos


https://github.com/defp/gqlgen-todos

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

```
mutation create {
createTodo(input: {userId: "xxx", text: "xxx"}) {
id
text
user {
id
name
}
}
}

query list {
todos {
id
user {
id
name
}
text
}
}
```