import { MutationHookOptions, MutationTuple, useMutation } from '@apollo/client' import { gql } from '@apollo/client/core' import { FORM_FRAGMENT, FormFragment } from '../fragment/form.fragment' interface Data { form: FormFragment } interface Variables { form: { isLive: boolean language: string showFooter?: boolean title: string } } const MUTATION = gql` mutation createForm($form: FormCreateInput!) { form: createForm(form: $form) { ...Form } } ${FORM_FRAGMENT} ` export const useFormCreateMutation = ( data?: MutationHookOptions ): MutationTuple => useMutation(MUTATION, data)