My response is in transit json and I need to convert it to edn.
cljs-http automatically converts the json into a cljs object.
So for the moment, I am doing:
(-> json
clj->js
js/JSON.stringify
(transit-decode :json nil))
But I'm sure there is a better way.