Order specifies how the records should be ordered.
(o ...user.OrderOption)
| 72 | |
| 73 | // Order specifies how the records should be ordered. |
| 74 | func (uq *UserQuery) Order(o ...user.OrderOption) *UserQuery { |
| 75 | uq.order = append(uq.order, o...) |
| 76 | return uq |
| 77 | } |
| 78 | |
| 79 | // QueryGroup chains the current query on the "group" edge. |
| 80 | func (uq *UserQuery) QueryGroup() *GroupQuery { |
nothing calls this directly
no outgoing calls
no test coverage detected