chore: remove redundant duplicate flow mutation

This commit is contained in:
Ali BARIN
2024-09-11 09:28:55 +00:00
committed by Faruk AYDIN
parent 22299868fa
commit 8352540fcb
5 changed files with 0 additions and 113 deletions

View File

@@ -1,27 +0,0 @@
import { gql } from '@apollo/client';
export const DUPLICATE_FLOW = gql`
mutation DuplicateFlow($input: DuplicateFlowInput) {
duplicateFlow(input: $input) {
id
name
active
status
steps {
id
type
key
appKey
iconUrl
webhookUrl
status
position
connection {
id
verified
createdAt
}
parameters
}
}
}
`;