Prevent queries revalidation if error in action
Hi.
I'm a little lost with the revalidate function.
Is it a server or client function ?
I would like to prevent all queries revalidation if I have an error in my action.
12 Replies
For background:
-
revalidate
acts on the client side query
values.
- Contrary to the docs revalidate
is for use outside of actions
.
- By default an action will revalidate all active query
s
- (afaik) Single flight mutation use the route preload to trigger query
s.
- To narrow action revalidation use reload
which also opts out of single flight mutation.
Based on this I'd try actually throwing the error—that may make it bail before it invalidates everything.reload - SolidDocs
Documentation for SolidJS, the signals-powered UI framework
GitHub
solid-router/src/data/action.ts at 3c214ce2ceb9b7d9d39d143229a8c614...
A universal router for Solid inspired by Ember and React Router - solidjs/solid-router
Thanks for the response.
From what I see, it's not possible de chose to single flight or not in action or the useAction (but that could be cool)
I see I can segregate route preload by intent. But I need to investigate a bit more to really understand what each keyword means
https://github.com/solidjs/solid-router/blob/main/src%2Ftypes.ts#L77
GitHub
solid-router/src/types.ts at main · solidjs/solid-router
A universal router for Solid inspired by Ember and React Router - solidjs/solid-router
- "initial" - the route is being initially shown (ie page load) - "native" - navigate originated from the browser (eg back/forward) - "navigate" - navigate originated from the router (eg call to navigate or anchor clicked) - "preload" - not navigating, just preloading (eg link hover)https://github.com/solidjs/solid-router/tree/main?tab=readme-ov-file#preload-functions
GitHub
GitHub - solidjs/solid-router: A universal router for Solid inspire...
A universal router for Solid inspired by Ember and React Router - solidjs/solid-router
Thanks 👍
chose to single flight or not in actionAs far as I'm aware single flight is reserved for actions that - provide a preload and - don't use
revalidate
options on the reload
or json
response helpers.
Of course that could change in the future.json - SolidDocs
Documentation for SolidJS, the signals-powered UI framework
Hey Peer,
reload
does not opt out of single flight mutations. It’s the solution for sfm if you want to stay on the same page.
And single flight mutations also work when revalidation keys are provided to the response helpers.
They target route just has to have the mutated and revalidated queries in the preload
.So things have changed since
https://discord.com/channels/722131463138705510/1243132814170394644/1243474984433614899
So
- Only
query
s that are in the preload can be in a single flight mutation.
- query
s which are not preloaded will never be in a single-flight mutation.
- A non-narrowed action
will single flight mutate for the preloaded query
s but still trigger separate fetches for active query
s that are not part of preload
.Yep, that’s what my tests imply.
If I find time next week I’ll prepare a PR for the docs
But I tested only returning - not throwing. There's no difference between
throw
and return
so yes this is correct:
- Only querys that are in the preload can be in a single flight mutation. ✅ - querys which are not preloaded will never be in a single-flight mutation. ✅ - A non-narrowed action will single flight mutate for the preloaded querys but still trigger separate fetches for active querys that are not part of preload. ✅
So it is possible to not revalidate anything:
Now I'm starting to think that returning an
Error
instance as an action result to indicate an error is a bad idea because there is no way to suppress revalidations. At least sticking to json()
:
(it has to be an empty array; undefined
or omitting the options entirely will make it behave like a vanilla action; reload
works equivalently)
revalidations can be suppressed. So back in January:
https://discord.com/channels/722131463138705510/1329164943878258739/1331345420504399994
single flight mutations were the likely cause of my issue; I just kept forgetting that:
- A vanilla action will by default revalidate all queries
- so if the route has a preload that means that the action will be a single flight mutation.
All I wanted, was to return an Error
instance from the action
, not cause an SMH and other revalidations. And apparently sometimes you can get lucky; you just can't count on it.GitHub
strello/src/lib/index.ts at 9c9ae973d96cc045914e696757a1b5f31efc6fa...
Contribute to solidjs-community/strello development by creating an account on GitHub.
There's no difference between throw
and return so yes this is correct:
Are you sure? Because this code does not cause revalidations for me: