Dataview is a Plugin for Obsidian that can query your notes based on different Properties like Metadata, Tags and more.
This Document lists some example Queries for Dataview
Each of the Queries need to be put inside a dataview codeblock:
## List Notes with specific tags + Exclusions
```
// Format of the dataview results
TABLE
// Get all Notes which contain the tag #task
// Do not include notes which are named "_Template Task"
WHERE contains(file.tags, "#Task") AND file.name != "_Template Task"
// Sort the table by filename, descending
SORT file.name DESC
```
## Resources
### Cheat Sheet
- https://github.com/seburbandev/obsidian-dataview-cheatsheet