📝 Database rollup field filtering rules support "Any", "All", and "None" https://github.com/siyuan-note/siyuan/issues/15609

This commit is contained in:
Daniel 2025-09-05 23:15:20 +08:00
parent 1fb4ed980b
commit f220e3627f
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
14 changed files with 40 additions and 1 deletions

View file

@ -80,7 +80,7 @@ const (
type FilterQuantifier string
const (
FilterQuantifierUndefined FilterQuantifier = ""
FilterQuantifierUndefined FilterQuantifier = "" // 等同于 Any
FilterQuantifierAny FilterQuantifier = "Any"
FilterQuantifierAll FilterQuantifier = "All"
FilterQuantifierNone FilterQuantifier = "None"