import * as Types from '#shared/graphql/types.ts'; import gql from 'graphql-tag'; import { ErrorsFragmentDoc } from '../../../../graphql/fragments/errors.api'; import * as VueApolloComposable from '@vue/apollo-composable'; import * as VueCompositionApi from 'vue'; export type ReactiveFunction = () => TParam; export const TicketSharedDraftStartDeleteDocument = gql` mutation ticketSharedDraftStartDelete($sharedDraftId: ID!) { ticketSharedDraftStartDelete(sharedDraftId: $sharedDraftId) { success errors { ...errors } } } ${ErrorsFragmentDoc}`; export function useTicketSharedDraftStartDeleteMutation(options: VueApolloComposable.UseMutationOptions | ReactiveFunction> = {}) { return VueApolloComposable.useMutation(TicketSharedDraftStartDeleteDocument, options); } export type TicketSharedDraftStartDeleteMutationCompositionFunctionResult = VueApolloComposable.UseMutationReturn;