feat: add duplicate flow functionality
This commit is contained in:
@@ -56,6 +56,7 @@ type Mutation {
|
||||
updateFlowStatus(input: UpdateFlowStatusInput): Flow
|
||||
executeFlow(input: ExecuteFlowInput): executeFlowType
|
||||
deleteFlow(input: DeleteFlowInput): Boolean
|
||||
duplicateFlow(input: DuplicateFlowInput): Flow
|
||||
createStep(input: CreateStepInput): Step
|
||||
updateStep(input: UpdateStepInput): Step
|
||||
deleteStep(input: DeleteStepInput): Step
|
||||
@@ -324,6 +325,10 @@ input DeleteFlowInput {
|
||||
id: String!
|
||||
}
|
||||
|
||||
input DuplicateFlowInput {
|
||||
id: String!
|
||||
}
|
||||
|
||||
input CreateStepInput {
|
||||
id: String
|
||||
previousStepId: String
|
||||
|
Reference in New Issue
Block a user