Files
automatisch/packages/web/src/graphql/mutations/delete-connection.ts

8 lines
158 B
TypeScript

import { gql } from '@apollo/client';
export const DELETE_CONNECTION = gql`
mutation DeleteConnection($id: String!) {
deleteConnection(id: $id)
}
`;