CollectionQuery returns a new Collection select query.
()
| 17 | |
| 18 | // CollectionQuery returns a new Collection select query. |
| 19 | func (app *BaseApp) CollectionQuery() *dbx.SelectQuery { |
| 20 | return app.ModelQuery(&Collection{}) |
| 21 | } |
| 22 | |
| 23 | // FindCollections finds all collections by the given type(s). |
| 24 | // |
no test coverage detected