arch: move web folder into api & move api to top level
This commit is contained in:
14
frontend/src/shared/graphql/user/deleteUser.ts
Normal file
14
frontend/src/shared/graphql/user/deleteUser.ts
Normal file
@ -0,0 +1,14 @@
|
||||
import gql from 'graphql-tag';
|
||||
|
||||
export const DELETE_USER_MUTATION = gql`
|
||||
mutation deleteUserAccount($userID: UUID!) {
|
||||
deleteUserAccount(input: { userID: $userID }) {
|
||||
ok
|
||||
userAccount {
|
||||
id
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
||||
export default DELETE_USER_MUTATION;
|
Reference in New Issue
Block a user