1
0

fix(filter): clarify in filter syntax

This commit is contained in:
kolaente
2024-05-22 22:17:50 +02:00
parent 86b460d09c
commit 76b3ac39b6
2 changed files with 2 additions and 2 deletions

View File

@ -61,7 +61,7 @@ Here are some examples of filter queries:
* `priority = 4`: Matches tasks with priority level 4
* `dueDate < now`: Matches tasks with a due date in the past
* `done = false && priority >= 3`: Matches undone tasks with priority level 3 or higher
* `assignees in [user1, user2]`: Matches tasks assigned to either "user1" or "user2
* `assignees in user1, user2`: Matches tasks assigned to either "user1" or "user2
* `(priority = 1 || priority = 2) && dueDate <= now`: Matches tasks with priority level 1 or 2 and a due date in the past