aboutsummaryrefslogtreecommitdiffstats
path: root/cache/query.go
diff options
context:
space:
mode:
Diffstat (limited to 'cache/query.go')
-rw-r--r--cache/query.go10
1 files changed, 9 insertions, 1 deletions
diff --git a/cache/query.go b/cache/query.go
index 39815d32..633ef1c2 100644
--- a/cache/query.go
+++ b/cache/query.go
@@ -56,13 +56,21 @@ func ParseQuery(query string) (*Query, error) {
f := AuthorFilter(qualifierQuery)
result.Author = append(result.Author, f)
+ case "actor":
+ f := ActorFilter(qualifierQuery)
+ result.Actor = append(result.Actor, f)
+
+ case "participant":
+ f := ParticipantFilter(qualifierQuery)
+ result.Participant = append(result.Participant, f)
+
case "label":
f := LabelFilter(qualifierQuery)
result.Label = append(result.Label, f)
case "title":
f := TitleFilter(qualifierQuery)
- result.Label = append(result.Title, f)
+ result.Title = append(result.Title, f)
case "no":
err := result.parseNoFilter(qualifierQuery)