feat: refactor delete user mutation with the REST API endpoint

This commit is contained in:
kasia.oczkowska
2024-07-18 10:14:46 +01:00
committed by Faruk AYDIN
parent 0e26032ac3
commit 1aa1f441b3
7 changed files with 25 additions and 46 deletions

View File

@@ -14,7 +14,6 @@ type Mutation {
deleteFlow(input: DeleteFlowInput): Boolean
deleteRole(input: DeleteRoleInput): Boolean
deleteStep(input: DeleteStepInput): Step
deleteUser(input: DeleteUserInput): Boolean
duplicateFlow(input: DuplicateFlowInput): Flow
executeFlow(input: ExecuteFlowInput): executeFlowType
generateAuthUrl(input: GenerateAuthUrlInput): AuthLink
@@ -381,10 +380,6 @@ input UpdateUserInput {
role: UserRoleInput
}
input DeleteUserInput {
id: String!
}
input RegisterUserInput {
fullName: String!
email: String!