Fixed the filters

This commit is contained in:
Hein
2025-11-07 15:58:24 +02:00
parent 0899ba5029
commit a5d97cc07b
3 changed files with 358 additions and 66 deletions

View File

@@ -37,9 +37,10 @@ type PreloadOption struct {
}
type FilterOption struct {
Column string `json:"column"`
Operator string `json:"operator"`
Value interface{} `json:"value"`
Column string `json:"column"`
Operator string `json:"operator"`
Value interface{} `json:"value"`
LogicOperator string `json:"logic_operator"` // "AND" or "OR" - how this filter combines with previous filters
}
type SortOption struct {