mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
refactor: add filters
This commit is contained in:
parent
71c1844bca
commit
67ed830a68
3 changed files with 9 additions and 13 deletions
|
@ -3,19 +3,16 @@ package model
|
|||
import (
|
||||
"context"
|
||||
|
||||
"github.com/Masterminds/squirrel"
|
||||
"github.com/deluan/rest"
|
||||
)
|
||||
|
||||
// Filters use the same operators as Beego ORM: See https://beego.me/docs/mvc/model/query.md#operators
|
||||
// Ex: var q = QueryOptions{Filters: Filters{"name__istartswith": "Deluan","age__gt": 25}}
|
||||
// All conditions will be ANDed together
|
||||
// TODO Implement filter in repositories' methods
|
||||
type QueryOptions struct {
|
||||
Sort string
|
||||
Order string
|
||||
Max int
|
||||
Offset int
|
||||
Filters map[string]interface{}
|
||||
Filters squirrel.Sqlizer
|
||||
}
|
||||
|
||||
type ResourceRepository interface {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue