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