Files
automatisch/packages/web/src/graphql/mutations/delete-current-user.ee.js
2024-02-29 09:38:32 +00:00

7 lines
138 B
JavaScript

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