ByDeletedAt orders the results by the deleted_at field.
(opts ...sql.OrderTermOption)
| 164 | |
| 165 | // ByDeletedAt orders the results by the deleted_at field. |
| 166 | func ByDeletedAt(opts ...sql.OrderTermOption) OrderOption { |
| 167 | return sql.OrderByField(FieldDeletedAt, opts...).ToFunc() |
| 168 | } |
| 169 | |
| 170 | // ByStatus orders the results by the status field. |
| 171 | func ByStatus(opts ...sql.OrderTermOption) OrderOption { |
nothing calls this directly
no outgoing calls
no test coverage detected