Skip to content

Instantly share code, notes, and snippets.

@nabanita-sarkar
Last active February 2, 2022 16:52
Show Gist options
  • Save nabanita-sarkar/6d230ea3712196c3c414758022f74473 to your computer and use it in GitHub Desktop.
Save nabanita-sarkar/6d230ea3712196c3c414758022f74473 to your computer and use it in GitHub Desktop.
const { isLoading, isError, data } = useQuery(
"todo/all",
() => {
return axios.get(`http://localhost:4000/todo/all`);
},
{
retry: 1, // or `true` or `false` or e.g. 6
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment