Files
automatisch/packages/web/src/graphql/mutations/delete-step.js
2024-02-29 09:38:32 +00:00

15 lines
244 B
JavaScript

import { gql } from '@apollo/client';
export const DELETE_STEP = gql`
mutation DeleteStep($input: DeleteStepInput) {
deleteStep(input: $input) {
id
flow {
id
steps {
id
}
}
}
}
`;