How to display tasks only within a specific note?

I’m stuck with the Tasks plugin obsidian-tasks-group/obsidian-tasks: Task management for the Obsidian knowledge base. (github.com) and getting a tasks query to only show those items in the same note the query is shown. Any tips?

Example query:
tasks
NOT done
due after 2023-01-01
due before next week
sort by priority
sort by due
show tags

1 Like
```tasks
not done
path includes {{query.file.path}}
hide backlink
hide edit button
```

or if you want to display edit buttons:

```tasks
not done
path includes {{query.file.path}}
hide backlink
```
2 Likes

Awesome! Thanks

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.