refactor(web): remove typescript
This commit is contained in:
14
packages/web/src/graphql/mutations/delete-step.js
Normal file
14
packages/web/src/graphql/mutations/delete-step.js
Normal file
@@ -0,0 +1,14 @@
|
||||
import { gql } from '@apollo/client';
|
||||
export const DELETE_STEP = gql`
|
||||
mutation DeleteStep($input: DeleteStepInput) {
|
||||
deleteStep(input: $input) {
|
||||
id
|
||||
flow {
|
||||
id
|
||||
steps {
|
||||
id
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
Reference in New Issue
Block a user