Public Vars

Back

facet (clj)

(source)

function

(facet & args)
Accepts any number of column names, or column/alias pairs, or SQL expressions (optionally aliased): (facet :id [:foo :bar] [[:max :quux]]) Produces: FACET id, foo AS bar, MAX(quux)

Examples