Lambda-School-Labs/designhub-fe

View on GitHub
src/graphql/mutations/comments/deleteComments.js

Summary

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

const DELETE_COMMENTS_MUTATION = gql`
  mutation deleteComments {
    deleteComments(id: $id)
  }
`;
export default DELETE_COMMENTS_MUTATION;