Append link to page when querying todos

Hi, all. Newbie here, but I’m learning fast.

The query below works well to give me todos due today or earlier, sorted by scheduled date without breadcrumbs. Is there any way to add a link to the page that the todo is coming from at the end of each todo?

#+BEGIN_QUERY
{ :query [:find (pull ?b [*])
     :in $ ?duetoday
     :where
     [?b :block/marker ?m]
     [(contains? #{"TODO" "NOW"} ?m)]
     [?b :block/scheduled ?d]
     [(<= ?d ?duetoday)]
     (not [?b :block/priority ?p])]
:inputs [:today]
:result-transform (fn [result]
     (sort-by (fn [h]
             (get-in h [:block/scheduled])) result))
:breadcrumb-show? false}
#+END_QUERY