Closed yilazius closed 6 years ago
I've got a HTTP endpoint which returns a body like:
{ "data": { "name":"test", "schema": { "title":"my-title" } } }
for some reason cljs-http is removing the schema object and flattening in its content into the parent container.
cljs-http
{:data {:name "test" :title "my-title"}}
never-mind, I added a bunch of test-cases, it works fine!
I've got a HTTP endpoint which returns a body like:
for some reason
cljs-http
is removing the schema object and flattening in its content into the parent container.