feat: Implement updateFlowStatus mutation

This commit is contained in:
Faruk AYDIN
2022-03-07 20:35:05 +03:00
committed by Ömer Faruk Aydın
parent 63198a6569
commit 64011b5c4b
4 changed files with 36 additions and 4 deletions

View File

@@ -20,12 +20,13 @@ type Mutation {
verifyConnection(id: String!): Connection
deleteConnection(id: String!): Boolean
createFlow(input: FlowInput): Flow
updateFlow(id: String!, name: String!, active: Boolean): Flow
updateFlow(id: String!, name: String!): Flow
updateFlowStatus(id: String!, active: Boolean!): Flow
executeFlow(stepId: String!): executeFlowType
deleteFlow(id: String!): Boolean
createStep(input: StepInput!): Step
updateStep(input: StepInput!): Step
deleteStep(id: String!): Step
executeFlow(stepId: String!): executeFlowType
login(email: String!, password: String!): Auth
}