Hi,
the query below still shows tasks with dates > 3 days and also today. I want to have only those after today and < = 3 days
{:title "π
NEXT 3 DAYS, NOT TODAY"
:query [:find (pull ?h [*])
:in $ ?next ?today
:where
[?h :block/marker ?m]
[(contains? #{"LATER" "TODO"} ?m)]
(or-join [?h ?d]
(and
[?h :block/ref-pages ?p]
[?p :block/journal? true]
[?p :block/journal-day ?d])
[?h :block/scheduled ?d]
[?h :block/deadline ?d])
[(and
[(< ?d ?next)]
[(> ?d ?today)])]]
:inputs [:3d-after :today]
:table-view? false
:breadcrumb-show? false
:collapsed? true}