This should be a “start” help for users, who migrate from v1 or new v2 users for queries
Tasks queries
Hint: Check dd-MM-yyyy - maybe its yyyy-MM-dd
## Overdue Tasks
${template.each(
query[[
from index.tag 'task' where deadline < os.date('%dd-%MM-%yyyy')
and not done
]],
templates.taskItem
)}
## Open Tasks
${template.each(
query[[
from index.tag 'task' where not table.includes(itags, 'meta')
and not done
]],
templates.taskItem
)}
## Tasks Daily
${template.each(
query[[
from index.tag 'task'
where not done and table.includes(itags, "daily")
]],
templates.taskItem
)}
Footer queries
(howto show open tasks in footer?)
…
Quick notes
(button for quick notes and a quick note list from last 10 notes)
…