Welcome. Since you asked for directions (instead of a direct solution):
- For a basic query, begin with Query Builder how to search for SCHEDULED or DEADLINE todos?
- e.g.
(or "SCHEDULED" "DEADLINE")
- e.g.
- For an advanced query, begin with Query for all tasks Scheduled or deadlined for today
- e.g. for current day:
:in $ ?day
:where (or [?b :block/scheduled ?day] [?b :block/deadline ?day] )
:inputs [:today]
- For other ideas, don’t miss Queries for task management
- e.g. for current day:
Then use a not
expression to exclude:
- basic queries:
task
- advanced queries:
marker
If still in troubles, ask back here (preferably with your progress).