git.sr.ht/~sircmpwn/gqlgen@v0.0.0-20200522192042-c84d29a1c940/example/config/models_gen.go (about) 1 // Code generated by git.sr.ht/~sircmpwn/gqlgen, DO NOT EDIT. 2 3 package config 4 5 type NewTodo struct { 6 Text string `json:"text"` 7 UserID string `json:"userId"` 8 } 9 10 type Todo struct { 11 ID string `json:"id"` 12 DatabaseID int `json:"databaseId"` 13 Description string `json:"text"` 14 Done bool `json:"done"` 15 User *User `json:"user"` 16 }