8 lines
117 B
TypeScript
8 lines
117 B
TypeScript
import { gql } from '@apollo/client';
|
|
|
|
export const DELETE_USER = gql`
|
|
mutation DeleteUser {
|
|
deleteUser
|
|
}
|
|
`;
|