[[Obsidian]]'s built-in search has some great functionality, including the ability to bake queries _into_ your notes! This opens up a lot of use cases without the need to go into the community plug-ins territory. Here are some examples queries:
# Tasks
## All Open
```query
task-todo:""
```
## All Open Including Keyword
```query
Line:("- [ ]" call)
```
## All Open Excluding Keyword
```query
Line:("- [ ]" -maybe)
```
****
## Source
- https://help.obsidian.md/Plugins/Search
## Related