Check out this post:
(Sorry doing this from a hospital bed on my phone but thought I could at least point you in the right direction)
Check out this post:
(Sorry doing this from a hospital bed on my phone but thought I could at least point you in the right direction)
Omg, you’re my savior - this works perfectly. For whatever reason you’re in the hospital - I hope you get well soon!
Thanks. Had emergency surgery, but I’m back home and recovering just fine.
This thread is so helpful! I would like to sort the output by project - right now it is sorted by date of journal entry.
I tried adding:
:result-transform (fn [result]
(sort-by (fn [h]
(get h :block/name)) result))
With no change
It outputs blocks, not pages. So we need to first get the page.
(get h :block/name)
Needs to be (get-in h [:block/page :block/name])
@Siferiax can you please add that sort criteria into the original query and republish? something im not understanding - thank you!
Which query do you mean exactly? There is a bunch of queries posted in this thread and I’m not sure which you refer to.
I feel that these queries are almost what I need.
I am having trouble finding a query that will work for the following workflow:
[[2025-05-01]]
- stuff occurred two
- stuff occurred three
[[project/PlanParty]]
- worked on tables
TODO email Bob
[[project/Cookout]]
- worked on grill
TODO pick up meat
[[2025-04-30]]
- stuff occurred one
- stuff occurred two
[[project/PlanParty]]
- worked on tables
TODO call Gregg
[[project/Cookout]]
- cleaned area
TODO cut grass
Todos for All Namespace Projects:
[[project/PlanParty]]
TODO call Gregg
TODO email Bob
[[project/Cookout]]
TODO pick up meat
TODO cut grass
Any help would be most appreciated.
@Siferiax
If you are trying to group by project, try the approach in A list of next tasks grouped by projects