```ts const postData = () => { const res = await fetch("/profile", { method: "POST", header: { // ... } body: { // ... } ); const data = await res.json(); return data; } useMutation({ mutationFn: postData }) ``` Is it correct?