import gql from 'graphql-tag' export const createProjectCommentMutation = gql` mutation CreateProjectComment($input: CreateCommentInput!) { commentMutations { create(input: $input) { id rawText text { doc } authorId } } } `