Order specifies how the records should be ordered.
(o ...entity.OrderOption)
| 60 | |
| 61 | // Order specifies how the records should be ordered. |
| 62 | func (eq *EntityQuery) Order(o ...entity.OrderOption) *EntityQuery { |
| 63 | eq.order = append(eq.order, o...) |
| 64 | return eq |
| 65 | } |
| 66 | |
| 67 | // QueryFile chains the current query on the "file" edge. |
| 68 | func (eq *EntityQuery) QueryFile() *FileQuery { |
nothing calls this directly
no outgoing calls
no test coverage detected