Daily task management on desktop and mobile

I would suggest linking to the journal page, then clicking it.
For me personally that seems a bit… complicated in and of itself.

I think you will find value in the discussion from this topic:

And in particular this post:

The second query I post there grabs a journal date reference from the parent block to use to display data.
This might be a nice way to check tasks for any date.

The query I posted before then becomes.

#+BEGIN_QUERY
{:title "Tasks"
 :query [:find (pull ?h [*])
  :in $ ?parent
  :where
   [?parent :block/refs ?j]
   [?j :block/journal-day ?day]
   [?h :block/marker ?marker]
   [(contains? #{"TODO"} ?marker)]
   (or
     [?h :block/scheduled ?day]
     [?h :block/deadline ?day]
   )
 ]
 :inputs [:parent-block]
}
#+END_QUERY