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