mirror of
https://github.com/IT4Change/ohmyform-ui.git
synced 2025-12-13 09:45:50 +00:00
31 lines
681 B
TypeScript
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)
|