mobilizon.chapril.org-mobil.../js/src/composition/apollo/report.ts
Thomas Citharel ee20e03cc2
Migrate to Vue 3 and Vite
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2022-08-11 16:46:31 +02:00

16 lines
364 B
TypeScript

import { CREATE_REPORT } from "@/graphql/report";
import { useMutation } from "@vue/apollo-composable";
export function useCreateReport() {
return useMutation<
{ createReport: { id: string } },
{
eventId?: string;
reportedId: string;
content?: string;
commentsIds?: string[];
forward?: boolean;
}
>(CREATE_REPORT);
}