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

7 lines
156 B
JavaScript

import { gql } from '@apollo/client';
export const DELETE_FLOW = gql`
mutation DeleteFlow($input: DeleteFlowInput) {
deleteFlow(input: $input)
}
`;