Order specifies how the records should be ordered.
(o ...file.OrderOption)
| 68 | |
| 69 | // Order specifies how the records should be ordered. |
| 70 | func (fq *FileQuery) Order(o ...file.OrderOption) *FileQuery { |
| 71 | fq.order = append(fq.order, o...) |
| 72 | return fq |
| 73 | } |
| 74 | |
| 75 | // QueryOwner chains the current query on the "owner" edge. |
| 76 | func (fq *FileQuery) QueryOwner() *UserQuery { |
nothing calls this directly
no outgoing calls
no test coverage detected