hi - i have a little utility function to re assign the outfields on a query
one way is this:
(defn re-var [query new-vars]
(<- new-vars (query :>> new-vars) (:distinct false)))
another is:
(defn re-var2 [query new-vars]}
(assoc query :outfields new-vars))
they both work it seems but i wonder if there is something subtly different between the two that make one better than the other?
thanks
andy