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