developer239/react-apollo-graphql

View on GitHub
src/modules/blog/hooks/useUpdatePage.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { useMutation } from '@apollo/react-hooks'
import {
  UpdatePage,
  UpdatePageVariables,
} from '../gql/__generated__/UpdatePage'
import { UPDATE_PAGE_MUTATION } from '../gql'

export const useUpdatePage = () =>
  useMutation<UpdatePage, UpdatePageVariables>(UPDATE_PAGE_MUTATION)