An aggregate function that returns the highest n
rows by some expr.
In the below example, we bind the top 5 highest scoring players.
;; QUERY
[[:from :Player]
[:agg [] [:highest-scoring [rel/top-by 5 :score]]]]
;; STATE
{:Player [{:score 1
:name "alice"}
{:score 200
:name "bob"}
{:score 4323
:name "fred"}
{:score 5555
:name "hannah"}
{:score 4242
:name "george"}
{:score -123
:name "isabel"}
{:score 330
:name "dave"}]}
;; RESULT
({:highest-scoring [{:score 5555, :name "hannah"}
{:score 4323, :name "fred"}
{:score 4242, :name "george"}
{:score 330, :name "dave"}
{:score 200, :name "bob"}]})
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close