Hello,
I want to follow a gamified approach for task management. For that I assign my tasks the property xp::
with a number.
Next I created a query that gives me all the tasks that are finished. That also worked well so far, even though I still don’t fully understand the clojure-stuff.
However what I did not get to work was sorting queried tasks by xp. The following query is the best I’ve got so far and seems to be in line with the answer to this post I found, but it does not sort the results by xp::
property.
#+BEGIN_QUERY
{
:title ["tasks"]
:query [
:find (pull ?b [*])
:where
[?b :block/marker ?marker]
[(contains? #{"TODO", "DOING"} ?marker)]
[?b :block/properties ?props]
[(get ?props :xp) ?xp]]
}
:result-transform (fn [result]
(sort-by (fn [h]
(get-in h [:block/properties :xp])) result))
#+END_QUERY
This yields query results like so:
which are not ordered.
I am mainly from a c++ background so it immensely confuses me that in :result-transform
suddenly result
and h
pop up. Also the data flow is not clear to me and what those variables actually represent.
Any help is appreciated, thanks a lot in advance !