QueryUser queries the "user" edge of the Task entity.
()
| 175 | |
| 176 | // QueryUser queries the "user" edge of the Task entity. |
| 177 | func (t *Task) QueryUser() *UserQuery { |
| 178 | return NewTaskClient(t.config).QueryUser(t) |
| 179 | } |
| 180 | |
| 181 | // Update returns a builder for updating this Task. |
| 182 | // Note that you need to call Task.Unwrap() before calling this method if this Task |
nothing calls this directly
no test coverage detected