https://github.com/defp/gqlgen-todos
https://github.com/defp/gqlgen-todos
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/defp/gqlgen-todos
- Owner: defp
- Created: 2020-07-16T02:25:22.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-07-16T02:42:32.000Z (almost 5 years ago)
- Last Synced: 2025-04-02T21:53:57.727Z (about 2 months ago)
- Language: Go
- Size: 13.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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
}
}
```