Hello, guys!
In each daily journal entry, I organize tasks by page using [[Tasks]], like the figure bellow.
Then I organize my Tasks page using a personal productive method. For this organization, I’m using queries for each section of the page. As an example, see “ Appointments & Calls” expanded section in figure bellow.
The query that I use to achieve the “ Appointments & Calls” section is this:
#+BEGIN_QUERY
{
:title [:h3 "📆 Appointments & Calls"]
:query [
:find (pull ?b [*])
:where
[?b :block/marker ?m]
[(contains? #{"TODO"} ?m)]
[?b :block/refs ?p]
[?p :block/name ?n]
[(contains? #{"appointment" "call"} ?n)]]
:group-by-page? false
:collapsed? false
}
#+END_QUERY
What I want is to hide the [[Tasks]] backlink of each TODO rendered, highlighted in figure bellow.
How can I modify that query to only TODOS be shown (without the upper reference bullet [[Tasks]])?