You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Good question. It's mostly an effort to try to keep things simple. You can always bring your own query stringify library without much pain. A lot of our urls look like /api/example-endpoint?${qs(params)}. This is also nice because there are different ways to encode arrays and nested objects as query params. Just seems easier to support than having a bunch of different options for configuring the encoding.
superagent
supports data for GET requests, sending it as query parameters. I was wondering why this ability has been removed inredux-query
's adapter.Instead of manually sending the body, shouldn't the adapter let superagent handle the body itself?
This change is pretty straight forward. I'd create a PR myself but I wanted to first ask if there's any good reason to not have this already.
The text was updated successfully, but these errors were encountered: