Skip to content

Instantly share code, notes, and snippets.

@jimkeller
Created October 14, 2022 01:44
Show Gist options
  • Save jimkeller/6ae31fde006a8a45dd32c687bf5eb219 to your computer and use it in GitHub Desktop.
Save jimkeller/6ae31fde006a8a45dd32c687bf5eb219 to your computer and use it in GitHub Desktop.
Example of using refetch() in react-query
/* Call refetch when inputValue changes */
useEffect(
() => {
refetch();
}, [inputValue]
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment