feat: show delete user functionality

This commit is contained in:
Ali BARIN
2023-03-02 23:36:31 +00:00
parent 72720b3dfe
commit 399cebda70
4 changed files with 119 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import { gql } from '@apollo/client';
export const DELETE_USER = gql`
mutation DeleteUser($input: DeleteUserInput) {
deleteUser(input: $input)
}
`;