radar/twist-v2

View on GitHub
frontend/src/Book/Note/Comments/DeleteCommentMutation.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import gql from "graphql-tag";

export default gql`
  mutation deleteCommentMutation($id: ID!) {
    deleteComment(id: $id) {
      id
    }
  }
`;