ohmyform-ui/graphql/mutation/form.create.mutation.ts
2022-01-03 00:39:47 +01:00

31 lines
681 B
TypeScript

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<Data, Variables>
): MutationTuple<Data, Variables> => useMutation<Data, Variables>(MUTATION, data)