Files
automatisch/packages/web/src/graphql/mutations/delete-step.ts
2022-03-09 00:53:20 +03:00

16 lines
245 B
TypeScript

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