I would now like to query for all blocks, which have the duration property and group them by their label to obtain a table or bullet-listing similar to this:
block
label
duration
One todo item
#project_1
1.6
Another todo item
#project_2
0.6
(Note: A link/reference to the corresponding block in the first column, would be sufficient as well.)
Is this possible and how?
As a bonus, it would be awesome to be able to sum over all duration values of the same label (i.e. duration of all blocks labelled with #project_1 in the screenshot above). But I would already be very happy to have a grouped list-view.
- ToDos
- TODO One todo item #project_1
- duration:: 1.6
- ONGOING One todo item #project_1
- duration:: 0.7
- DONE Another todo item #project_2
- duration:: 0.6
- Notes
- Meeting minutes #project_3
- duration:: 0.5
- This is a note from the meeting.
- This is another note from the meeting
And to answer your questions:
Some blocks have TODO marker (or DONE / ONGOING), but not all. As you can see in the example above I also put duration property on Meetings to track how long they took. But querying just the TODO/DONE/ONGOING items, would already be very good start.
The duration property is always a child-block of the block that I want to query for.
Let’s ignore the duration-sum-per-label for the moment, if it can be handled in a separate query (I can do the sum by hand, when I have the correct query).