chore: remove redundant execute flow mutation

This commit is contained in:
Ali BARIN
2024-09-19 09:09:32 +00:00
parent 84d5b3b158
commit 32f7bbfbab
4 changed files with 0 additions and 52 deletions

View File

@@ -3,7 +3,6 @@ type Query {
}
type Mutation {
createConnection(input: CreateConnectionInput): Connection
executeFlow(input: ExecuteFlowInput): executeFlowType
generateAuthUrl(input: GenerateAuthUrlInput): AuthLink
resetConnection(input: ResetConnectionInput): Connection
updateConnection(input: UpdateConnectionInput): Connection
@@ -153,11 +152,6 @@ type ConnectionData {
screenName: String
}
type executeFlowType {
data: JSONObject
step: Step
}
type ExecutionStep {
id: String
executionId: String
@@ -232,10 +226,6 @@ input VerifyConnectionInput {
id: String!
}
input ExecuteFlowInput {
stepId: String!
}
input UserRoleInput {
id: String
}