Files
automatisch/packages/web/src/graphql/mutations/delete-flow.ts
2022-08-06 23:41:47 +02:00

8 lines
157 B
TypeScript

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