Automatic merge blocks

I am just beginning to play around with logseq. I wanted to play around with the daily journal and a page for a project.

If I want to have something like adding ideas and todos in the journal on various days

  • [[Project xxx]]
    * Ideas
    * Idea 1
    * Idea 2
    * Todo
    * Todo 1
    and on the Project Page it would be cool to have a automatic merge
  • Ideas
    • Ideas from day 1
    • Ideas from day 2
  • Todos
    * Todos from Day 1
    * Todos from Day 2
    Is something like that possible?
    Best regards

Welcome.

If you write in one journal this:

- [[Project xxx]]
	- Idea 11 #idea
	- Idea 12 #idea
	- TODO 11
	- TODO 12

…in another journal this:

- [[Project xxx]]
	- Idea 21 #idea
	- Idea 22 #idea
	- TODO 21
	- TODO 22

…and in the project’s page this:

- {{query (and [[Project xxx]] [[idea]] ) }}
-
- {{query (and [[Project xxx]] [[TODO]] ) }}

…it should render like this:

1 Like