Order specifies how the records should be ordered.
(o ...task.OrderOption)
| 55 | |
| 56 | // Order specifies how the records should be ordered. |
| 57 | func (tq *TaskQuery) Order(o ...task.OrderOption) *TaskQuery { |
| 58 | tq.order = append(tq.order, o...) |
| 59 | return tq |
| 60 | } |
| 61 | |
| 62 | // QueryUser chains the current query on the "user" edge. |
| 63 | func (tq *TaskQuery) QueryUser() *UserQuery { |
nothing calls this directly
no outgoing calls
no test coverage detected