Display all tasks that were planned in the past and not done.
Overdue Tasks

Description
Query
click to copy
tasks as task where task.status = "todo" and task.planning < today

Display all tasks that were planned in the past and not done.
tasks as task where task.status = "todo" and task.planning < today
