Files
automatisch/packages/web/src/graphql/mutations/delete-current-user.ee.ts
2023-08-03 19:39:48 +02:00

8 lines
139 B
TypeScript

import { gql } from '@apollo/client';
export const DELETE_CURRENT_USER = gql`
mutation DeleteCurrentUser {
deleteCurrentUser
}
`;