https://github.com/sergiodxa/swr-mutate-many
Little function to call mutate against multiple cached keys of SWR
https://github.com/sergiodxa/swr-mutate-many
mutate mutate-many react swr typescript
Last synced: 6 months ago
JSON representation
Little function to call mutate against multiple cached keys of SWR
- Host: GitHub
- URL: https://github.com/sergiodxa/swr-mutate-many
- Owner: sergiodxa
- License: mit
- Created: 2020-03-05T05:11:18.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-25T10:04:52.000Z (over 2 years ago)
- Last Synced: 2025-03-28T20:46:02.624Z (6 months ago)
- Topics: mutate, mutate-many, react, swr, typescript
- Language: TypeScript
- Homepage:
- Size: 714 KB
- Stars: 27
- Watchers: 1
- Forks: 3
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# SWR Mutate Many


[](https://codeclimate.com/github/sergiodxa/swr-mutate-many/maintainability)
[](https://codeclimate.com/github/sergiodxa/swr-mutate-many/test_coverage)Little function to call mutate against multiple cached keys of SWR.
## Usage
Install it
```sh
$ yarn add swr swr-mutate-many
```Import it and use it
```ts
import { mutateMany } from 'swr-mutate-many';mutateMany('key-*', 'New Value', false);
```Now mutateMany will change the value of any key matching the glob `key-*` (any starting with `key-`) to have the value `"New Value"` and it won't trigger a revalidation.
## API
mutateMany follow a similar API as SWR mutate.
1. The key to mutate, in our case it could be:
- A string supporting globs to match the key, useful for simple logic
- A function which will receive the key and should return true/false if it matches, useful for complex logic2. The new value to use, a promise whose resolved value will be used or a function receiving the current value
3. If the keys should be revalidated, in our case it could be:- A boolean, as in mutate, useful if you want all to revalidate or not
- A function, which will receive the key and return a boolean, useful for complext logic