developer239/react-apollo-graphql

View on GitHub
src/modules/auth/hooks/useRegister.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { useMutation } from '@apollo/react-hooks'
import { Register, RegisterVariables } from '../gql/__generated__/Register'
import { REGISTER_MUTATION } from '../gql'

export const useRegister = () =>
  useMutation<Register, RegisterVariables>(REGISTER_MUTATION)