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