Hide ancestral backlink block from a task

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 “:calendar: Appointments & Calls” expanded section in figure bellow.

The query that I use to achieve the “:calendar: 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.

:point_right: How can I modify that query to only TODOS be shown (without the upper reference bullet [[Tasks]])?

It was much more simple than I though. Just added

:breadcrumb-show? false

and it disappeared.

Thanks to @Federico_Frosini on Discord.

2 Likes

*thought :slight_smile: