fields

Like select-keys but for nested maps. Inspired by the fields request parameter proposed by Google.


Keywords
clojure, fields, filter, nested, select-keys
License
MIT

Documentation

fields Build Status

fields exposes the function select-keys-by-fields which offers the same functionality as select-keys but for complex nested maps. Instead of specifying paths in a vector, we write a query describing the structure of the desired output map.

fieldsis inspired by the same-named HTTP request parameter as described by Google here. In the background it parses the query into a zipper and traverses the zipper filtering the map along the way.

Example

(def data {:a 1
	   :b [{:aa 2 :bb 3} {:aa 4 :bb 5}]
	   :c {:cc 6 :dd {:fff 7 :ggg 8}}})

(select-keys-by-fields data "(a)")
=> {:a 1}

(select-keys-by-fields data "(a,b(aa))")
=> {:a 1, :b ({:aa 2} {:aa 4})}

(select-keys-by-fields data "(b,c(cc,dd(ggg)))")
=> {:b ({:aa 2, ::bb 3} {:aa 4, :bb 5}), :c {:cc 6, :dd {:ggg 8}}}

Latest Version

Clojars Project

License

MIT