All Tasks

Master Task View

Shows all tasks from all projects, segments, and sprints.

Summary Stats

TABLE WITHOUT ID
	length(file.tasks) as "Total",
	length(filter(file.tasks, (t) => !t.completed)) as "Incomplete",
	length(filter(file.tasks, (t) => t.completed)) as "Complete"
FROM ""
WHERE file.tasks
FLATTEN file.tasks as task
GROUP BY true

Incomplete Tasks

TASK
FROM ""
WHERE !completed
SORT file.name DESC

Completed Tasks

TASK
FROM ""
WHERE completed
SORT completion DESC

All tasks from across the entire vault