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