Execute flexible SQL base queries against your data in Obsidian and render it how you want using Handlebars templates.
Look at the Qatt Project to see what is in progress or planned. Please make a issue if you have a problem or want to add/request a new feature. Open to PRs at any point.
Documentation on installing the plugin and using it can be found at https://sytone.github.io/obsidian-queryallthethings/
Well, in short after you have installed the plugin make a code block like the following example, this will list all your tasks that are not done and group them by the month when they are due.
If you want more details.... Read the documentation, or reverse engineer the code base. Your Choice!
Note: This plugin currently has a soft dependency on DataView, make sure it is installed if you want to use the dataview backed tables.
```qatt
query: |
SELECT TOP 5 * FROM obsidian_markdown_notes ORDER BY stat->mtime DESC
template: |
{{#each result}}
- [[{{path}}\|{{basename}}]]
{{/each}}
---