reduxjs / redux-toolkit

The official, opinionated, batteries-included toolset for efficient Redux development
https://redux-toolkit.js.org
MIT License
10.72k stars 1.17k forks source link

Redirect Endpoint? #4331

Open rwilliams3088 opened 7 months ago

rwilliams3088 commented 7 months ago

I'm working on writing a little API for communicating with my authentication server. For logging in and out, it is necessary to perform a redirect. Does RTK Query currently support the ability to perform redirects? Or would this be a place to use queryFn? Thanks :)

phryneas commented 7 months ago

RTK Query has no integration with any routing library, so you'd have to do that yourself, probably in a query lifecycle event or some other kind of side effect.