import gql from 'graphql-tag'; // @dynamic export class CommentsQuery { static deleteComment() { return gql` mutation($commentId: ID!) { dpoDeleteComment(id: $commentId) { succeeded errorMessage } } `; } }