8 lines
139 B
TypeScript
8 lines
139 B
TypeScript
import { gql } from '@apollo/client';
|
|
|
|
export const DELETE_CURRENT_USER = gql`
|
|
mutation DeleteCurrentUser {
|
|
deleteCurrentUser
|
|
}
|
|
`;
|