react-code-dataset
/
next.js
/examples
/api-routes-apollo-server-and-client-auth
/pages
/signout.tsx
| import { useEffect } from "react"; | |
| import { useRouter } from "next/router"; | |
| import { gql, useMutation, useApolloClient } from "@apollo/client"; | |
| const SignOutMutation = gql` | |
| mutation SignOutMutation { | |
| signOut | |
| } | |
| `; | |
| function SignOut() { | |
| const client = useApolloClient(); | |
| const router = useRouter(); | |
| const [signOut] = useMutation(SignOutMutation); | |
| useEffect(() => { | |
| signOut().then(() => { | |
| client.resetStore().then(() => { | |
| router.push("/signin"); | |
| }); | |
| }); | |
| }, [signOut, router, client]); | |
| return <p>Signing out...</p>; | |
| } | |
| export default SignOut; | |