We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
useSWRImmutable
Some resources are immutable (or app should not revalidate their contents).
For now, I have to use it like this:
const { data: itemInfoData } = client.users.list.useSWR( {some: "params"}, { revalidateIfStale: false, revalidateOnFocus: false, revalidateOnReconnect: false, }, );
Using the original SWR this could be simplified to
const { data: itemInfoData } = client.users.list.useSWRImmutable({some: 'params'});
Please consider adding this simple helper hook.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Some resources are immutable (or app should not revalidate their contents).
For now, I have to use it like this:
Using the original SWR this could be simplified to
Please consider adding this simple helper hook.
The text was updated successfully, but these errors were encountered: