radar/twist-v2

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

Summary

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

export default gql`
  mutation updateCommentMutation($id: ID!, $text: String!) {
    updateComment(id: $id, text: $text) {
      id
      text
    }
  }
`;