Advance Query - Weekly Review

I have daily reflections and I’d like to query the reflectons for the past week. So far I’m able to do this but I’d like to see the child blocks (content under the header Reflection). My query so far is this:

#+BEGIN_QUERY
  {:title "Reflections in the Past 7 days"
   :query [:find (pull ?b [*])
         :in $ ?start ?today ?tag
         :where
         [?b :block/page ?p]
         [?p :page/journal-day ?d]
         [(>= ?d ?start)]
         [(<= ?d ?today)]
         [?b :block/ref-pages ?rp]
         [?rp :block/name ?tag]]
   :inputs [:7d-before :today "reflections"]}
  #+END_QUERY

What I see is this:

I would love to see something like this:

4 Likes