chore: remove redundant create user mutation

This commit is contained in:
Ali BARIN
2024-09-18 15:26:30 +00:00
committed by Faruk AYDIN
parent cfec447d8a
commit e126066132
4 changed files with 7 additions and 95 deletions

View File

@@ -3,7 +3,14 @@ type Query {
}
type Mutation {
createConnection(input: CreateConnectionInput): Connection
<<<<<<< HEAD
createUser(input: CreateUserInput): UserWithAcceptInvitationUrl
=======
createFlow(input: CreateFlowInput): Flow
deleteCurrentUser: Boolean
deleteFlow(input: DeleteFlowInput): Boolean
deleteStep(input: DeleteStepInput): Step
>>>>>>> 3aa20fed (chore: remove redundant create user mutation)
executeFlow(input: ExecuteFlowInput): executeFlowType
generateAuthUrl(input: GenerateAuthUrlInput): AuthLink
resetConnection(input: ResetConnectionInput): Connection
@@ -244,12 +251,6 @@ input ExecuteFlowInput {
stepId: String!
}
input CreateUserInput {
fullName: String!
email: String!
role: UserRoleInput!
}
input UserRoleInput {
id: String
}
@@ -344,11 +345,6 @@ type User {
updatedAt: String
}
type UserWithAcceptInvitationUrl {
user: User
acceptInvitationUrl: String
}
type Role {
id: String
name: String