Thomas Trompette
2025-09-10 17:25:40 +02:00
committed by GitHub
parent bcf1bba302
commit 3bfb5bbd86
34 changed files with 642 additions and 118 deletions
@@ -0,0 +1,24 @@
import { gql } from '@apollo/client';
export const DUPLICATE_WORKFLOW_VERSION_STEP = gql`
mutation DuplicateWorkflowVersionStep(
$input: DuplicateWorkflowVersionStepInput!
) {
duplicateWorkflowVersionStep(input: $input) {
triggerNextStepIds
stepsNextStepIds
createdStep {
id
name
type
settings
valid
nextStepIds
position {
x
y
}
}
}
}
`;