What I’m trying to do
I want to query only active (incomplete) tasks from a kanban file. My query is as below, and the behaviour I expect is that it only picks up undone tasks :
TASK
FROM "personal/kanban_todo.md"
WHERE contains(text, "priority") AND !Tasks.completed
SORT priority DESC
LIMIT 5
However, this script also seems to be picking up done tasks
The kanban board is shown here
and the plain .md file is as in this screenshot :
I am not sure if this is the intended behaviour, but this is not what I want. Any help to remove the annoying completed tasks from showing up is appreciated!