onSuccess in React Query: A Guide

The admin panel that you'll actually want to use. Try for free.

January 29, 2024

React Query's onSuccess callback is a great way to handle data fetching in a React application. It triggers when a query successfully fetches data, allowing developers to perform side effects or update the UI accordingly.

What is onSuccess in React Query?

onSuccess is a callback function that you can define within a query or mutation in React Query. This function is executed when the query or mutation successfully retrieves data or completes an action without errors. The primary use of onSuccess is to perform additional actions or side effects, like updating local state, triggering notifications, or redirecting the user.

How to use onSuccess in queries

When using React Query's useQuery or similar hooks, onSuccess can be passed as an option. It receives the data returned from the query as its argument.

import { useQuery } from 'react-query'; const fetchData = async () => { // fetch logic }; const Component = () => { const { data } = useQuery('queryKey', fetchData, { onSuccess: (data) => { // handle successful data fetching } }); // component logic };

How to use onSuccess in mutations

For mutations, onSuccess is used in a similar way within the useMutation hook. It provides the response data from the mutation operation.

import { useMutation } from 'react-query'; const mutateData = async () => { // mutation logic }; const Component = () => { const mutation = useMutation(mutateData, { onSuccess: (data) => { // handle successful mutation } }); // component logic };

You could ship faster.

Imagine the time you'd save if you never had to build another internal tool, write a SQL report, or manage another admin panel again. Basedash is built by internal tool builders, for internal tool builders. Our mission is to change the way developers work, so you can focus on building your product.

Real-world Scenarios

Updating local state

onSuccess can be used to update the local state of a component based on the fetched data.

const Component = () => { const [localData, setLocalData] = useState(null); useQuery('queryKey', fetchData, { onSuccess: (data) => { setLocalData(data); } }); // component logic };

Triggering notifications

You can use onSuccess to show success messages or notifications to the user.

const Component = () => { const query = useQuery('queryKey', fetchData, { onSuccess: () => { alert('Data fetched successfully!'); } }); // component logic };

Redirecting after mutation

After a successful mutation, you might want to redirect the user to a different page.

const Component = () => { const mutation = useMutation(mutateData, { onSuccess: () => { // redirect logic, e.g., using React Router } }); // component logic };

Advanced use cases

Accessing query or mutation Meta

You can access the query or mutation instance within the onSuccess callback to get additional details like query key or state.

const Component = () => { const query = useQuery('queryKey', fetchData, { onSuccess: (data) => { console.log('Query Key:', query.queryKey); // additional logic } }); // component logic };

Interacting with query cache

React Query allows you to interact with the query cache in the onSuccess callback, enabling scenarios like updating related queries based on mutation results.

const Component = () => { const queryClient = useQueryClient(); const mutation = useMutation(mutateData, { onSuccess: () => { queryClient.invalidateQueries('relatedQueryKey'); } }); // component logic };

TOC

What is `onSuccess` in React Query?
Real-world Scenarios
Advanced use cases

January 29, 2024

React Query's onSuccess callback is a great way to handle data fetching in a React application. It triggers when a query successfully fetches data, allowing developers to perform side effects or update the UI accordingly.

What is onSuccess in React Query?

onSuccess is a callback function that you can define within a query or mutation in React Query. This function is executed when the query or mutation successfully retrieves data or completes an action without errors. The primary use of onSuccess is to perform additional actions or side effects, like updating local state, triggering notifications, or redirecting the user.

How to use onSuccess in queries

When using React Query's useQuery or similar hooks, onSuccess can be passed as an option. It receives the data returned from the query as its argument.

import { useQuery } from 'react-query'; const fetchData = async () => { // fetch logic }; const Component = () => { const { data } = useQuery('queryKey', fetchData, { onSuccess: (data) => { // handle successful data fetching } }); // component logic };

How to use onSuccess in mutations

For mutations, onSuccess is used in a similar way within the useMutation hook. It provides the response data from the mutation operation.

import { useMutation } from 'react-query'; const mutateData = async () => { // mutation logic }; const Component = () => { const mutation = useMutation(mutateData, { onSuccess: (data) => { // handle successful mutation } }); // component logic };

You could ship faster.

Imagine the time you'd save if you never had to build another internal tool, write a SQL report, or manage another admin panel again. Basedash is built by internal tool builders, for internal tool builders. Our mission is to change the way developers work, so you can focus on building your product.

Real-world Scenarios

Updating local state

onSuccess can be used to update the local state of a component based on the fetched data.

const Component = () => { const [localData, setLocalData] = useState(null); useQuery('queryKey', fetchData, { onSuccess: (data) => { setLocalData(data); } }); // component logic };

Triggering notifications

You can use onSuccess to show success messages or notifications to the user.

const Component = () => { const query = useQuery('queryKey', fetchData, { onSuccess: () => { alert('Data fetched successfully!'); } }); // component logic };

Redirecting after mutation

After a successful mutation, you might want to redirect the user to a different page.

const Component = () => { const mutation = useMutation(mutateData, { onSuccess: () => { // redirect logic, e.g., using React Router } }); // component logic };

Advanced use cases

Accessing query or mutation Meta

You can access the query or mutation instance within the onSuccess callback to get additional details like query key or state.

const Component = () => { const query = useQuery('queryKey', fetchData, { onSuccess: (data) => { console.log('Query Key:', query.queryKey); // additional logic } }); // component logic };

Interacting with query cache

React Query allows you to interact with the query cache in the onSuccess callback, enabling scenarios like updating related queries based on mutation results.

const Component = () => { const queryClient = useQueryClient(); const mutation = useMutation(mutateData, { onSuccess: () => { queryClient.invalidateQueries('relatedQueryKey'); } }); // component logic };

January 29, 2024

React Query's onSuccess callback is a great way to handle data fetching in a React application. It triggers when a query successfully fetches data, allowing developers to perform side effects or update the UI accordingly.

What is onSuccess in React Query?

onSuccess is a callback function that you can define within a query or mutation in React Query. This function is executed when the query or mutation successfully retrieves data or completes an action without errors. The primary use of onSuccess is to perform additional actions or side effects, like updating local state, triggering notifications, or redirecting the user.

How to use onSuccess in queries

When using React Query's useQuery or similar hooks, onSuccess can be passed as an option. It receives the data returned from the query as its argument.

import { useQuery } from 'react-query'; const fetchData = async () => { // fetch logic }; const Component = () => { const { data } = useQuery('queryKey', fetchData, { onSuccess: (data) => { // handle successful data fetching } }); // component logic };

How to use onSuccess in mutations

For mutations, onSuccess is used in a similar way within the useMutation hook. It provides the response data from the mutation operation.

import { useMutation } from 'react-query'; const mutateData = async () => { // mutation logic }; const Component = () => { const mutation = useMutation(mutateData, { onSuccess: (data) => { // handle successful mutation } }); // component logic };

You could ship faster.

Imagine the time you'd save if you never had to build another internal tool, write a SQL report, or manage another admin panel again. Basedash is built by internal tool builders, for internal tool builders. Our mission is to change the way developers work, so you can focus on building your product.

Real-world Scenarios

Updating local state

onSuccess can be used to update the local state of a component based on the fetched data.

const Component = () => { const [localData, setLocalData] = useState(null); useQuery('queryKey', fetchData, { onSuccess: (data) => { setLocalData(data); } }); // component logic };

Triggering notifications

You can use onSuccess to show success messages or notifications to the user.

const Component = () => { const query = useQuery('queryKey', fetchData, { onSuccess: () => { alert('Data fetched successfully!'); } }); // component logic };

Redirecting after mutation

After a successful mutation, you might want to redirect the user to a different page.

const Component = () => { const mutation = useMutation(mutateData, { onSuccess: () => { // redirect logic, e.g., using React Router } }); // component logic };

Advanced use cases

Accessing query or mutation Meta

You can access the query or mutation instance within the onSuccess callback to get additional details like query key or state.

const Component = () => { const query = useQuery('queryKey', fetchData, { onSuccess: (data) => { console.log('Query Key:', query.queryKey); // additional logic } }); // component logic };

Interacting with query cache

React Query allows you to interact with the query cache in the onSuccess callback, enabling scenarios like updating related queries based on mutation results.

const Component = () => { const queryClient = useQueryClient(); const mutation = useMutation(mutateData, { onSuccess: () => { queryClient.invalidateQueries('relatedQueryKey'); } }); // component logic };

What is Basedash?

What is Basedash?

What is Basedash?

Ship faster, worry less with Basedash

Ship faster, worry less with Basedash

Ship faster, worry less with Basedash

You're busy enough with product work to be weighed down building, maintaining, scoping and developing internal apps and admin panels. Forget all of that, and give your team the admin panel that you don't have to build. Launch in less time than it takes to run a standup.

You're busy enough with product work to be weighed down building, maintaining, scoping and developing internal apps and admin panels. Forget all of that, and give your team the admin panel that you don't have to build. Launch in less time than it takes to run a standup.

You're busy enough with product work to be weighed down building, maintaining, scoping and developing internal apps and admin panels. Forget all of that, and give your team the admin panel that you don't have to build. Launch in less time than it takes to run a standup.

Dashboards and charts

Edit data, create records, oversee how your product is running without the need to build or manage custom software.

USER CRM

ADMIN PANEL

SQL COMPOSER WITH AI

Screenshot of a users table in a database. The interface is very data-dense with information.