Home  >  Q&A  >  body text

Data publishing using React Query

<p>I'm learning React Query and trying to use it to post data. </p> <p>I am able to get the data using React Query, but I cannot post the data using it. My question is if it is possible to post data using React Query, and how to do it. </p> <p>Thank you :)</p>
P粉821808309P粉821808309393 days ago425

reply all(1)I'll reply

  • P粉323050780

    P粉3230507802023-08-26 00:07:28

    This is a quick example of React Query mutation

    const mutation = useMutation({
       mutationFn: (newTodo) => {
         return axios.post('/todos', newTodo)
       },
     })
    

    React Query - Mutations Documentation

    reply
    0
  • Cancelreply