Getting one layer/children down the query table

{
:title [:h1 "Words of the day"]
 :query [:find (pull ?parent [*])
         :where
         (page-ref ?parent "daily_words")
         [?parent :block/content _]
]
 :breadcrumb-show? false
 :result-transform (fn [result] result)
 :collapsed? false
}

this is my current query
and its output is


what I want is to make the output not repeat “Words of the day #daily_words”, instead just the inside items, hence the title.

[?b :block/parent ?parent]
And then pull ?b in the find instead of ?parent.

1 Like