mirror of
https://github.com/dstotijn/hetty.git
synced 2025-07-01 18:47:29 -04:00
21 lines
363 B
Go
21 lines
363 B
Go
![]() |
// Code generated by github.com/99designs/gqlgen, DO NOT EDIT.
|
||
|
|
||
|
package api
|
||
|
|
||
|
type NewTodo struct {
|
||
|
Text string `json:"text"`
|
||
|
UserID string `json:"userId"`
|
||
|
}
|
||
|
|
||
|
type Todo struct {
|
||
|
ID string `json:"id"`
|
||
|
Text string `json:"text"`
|
||
|
Done bool `json:"done"`
|
||
|
User *User `json:"user"`
|
||
|
}
|
||
|
|
||
|
type User struct {
|
||
|
ID string `json:"id"`
|
||
|
Name string `json:"name"`
|
||
|
}
|