How to accept flattened objects in query params?
It seems that the hono client calls
[1/2]
String() on the query params so that any objects passed through which should normally be something like filters[key]=value ends up becoming filters="[object Object]". - I'm pretty sure this use-case should be supported since it appears out in the wild when using query params
- Is there a way to make this work? or is the recommendation to go with flat query objects / honojs client doesn't support objects in query params?
[1/2]