Retry next in middleware
This reminded me of the other QoL feature regarding middlewares I'd love to see: retrying the
next() handler. My use case is to add retry logic for certain kinds of errors (in my case on the client, but it'd apply on the server too) that is encapsulated in the server fn, without having to move that logic up to say the query client.Currently, it seems calling
next multiple times doesn't work, the successive calls just return undefined