chore: remove redundant register user mutation

This commit is contained in:
Ali BARIN
2024-09-11 13:08:53 +00:00
committed by Faruk AYDIN
parent ba0d46c6cd
commit ddc9867058
5 changed files with 1 additions and 51 deletions

View File

@@ -11,7 +11,6 @@ type Mutation {
duplicateFlow(input: DuplicateFlowInput): Flow
executeFlow(input: ExecuteFlowInput): executeFlowType
generateAuthUrl(input: GenerateAuthUrlInput): AuthLink
registerUser(input: RegisterUserInput): User
resetConnection(input: ResetConnectionInput): Connection
updateConnection(input: UpdateConnectionInput): Connection
updateCurrentUser(input: UpdateCurrentUserInput): User
@@ -296,12 +295,6 @@ input UpdateUserInput {
role: UserRoleInput
}
input RegisterUserInput {
fullName: String!
email: String!
password: String!
}
input UpdateCurrentUserInput {
email: String
password: String