How do I make coercion work in nested fashion
["/stats/{project-id}"
{:parameters {:path [:map [:project-id int?]]}}
["/{file}/stats" {:get {:parameters {:path [:map [:file string?]]}
:handler get-file-stats}}]]
This only gives me :project-id in the map
@roklenarcic it's a bug, with all coercion imps, mostly visible with malli
So the only workaround is to specify full parameters at each endpoint
sadly, yes.