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
When I have GET requests with complex parameters, I like to use method overrides, e.g. POST /cities?_method=GET where _method=GET is a hint to the API's router to route the request as a GET even though it's technically a POST. Then you have the full post body to work with. Useful on parameters for server-rendered data grids like...
Hello)
Is it possible to create a request with like below using redux-bees?
http://localhost:3000/cities?filter[country_id]=1
I had tried
api.getCities({ filter: { country_id: countryId } })
but got only
http://localhost:3000/cities?filter=%5Bobject%20Object%5D
The text was updated successfully, but these errors were encountered: