mobilizon.chapril.org-mobil.../js/src/composition/apollo/report.ts

16 lines
364 B
TypeScript
Raw Normal View History

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);
}