if I wanted to do a chain of transformations and wanted to avoid writing:
(let [data (transform ... data)
data (transform ... data)
...] )
how would I go about that?@mbjarland either (->> data (transform ...) (transform ...))
or use multi-transform
i prefer the former except where paths share a lot of structure