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