c92938eff3
* main changes seem to be done? * lint fix * minor cleanup * dataloader clear
17 lines
299 B
TypeScript
17 lines
299 B
TypeScript
import gql from 'graphql-tag'
|
|
|
|
export const createProjectCommentMutation = gql`
|
|
mutation CreateProjectComment($input: CreateCommentInput!) {
|
|
commentMutations {
|
|
create(input: $input) {
|
|
id
|
|
rawText
|
|
text {
|
|
doc
|
|
}
|
|
authorId
|
|
}
|
|
}
|
|
}
|
|
`
|