I have an endpoint that mixes both ReqBody and QueryParams:
filterOccurrences :: [Tag] -> [QueryFilter] -> …
However, the generated Elm reverses the order:
postOccurrencesFiltered : List (QueryFilter) -> List (String) -> Http.Request …
It’s clearly not a big deal, but it’s confusing and error prone (I can’t imagine the madness if both the arguments resolve to the exact same type).
I have an endpoint that mixes both
ReqBodyandQueryParams:However, the generated Elm reverses the order:
It’s clearly not a big deal, but it’s confusing and error prone (I can’t imagine the madness if both the arguments resolve to the exact same type).