Files
speckle-server/packages/server/test/graphql/projectComments.ts
T
Kristaps Fabians Geikins c92938eff3 chore(server): apollo server v3 -> v4 (#2880)
* main changes seem to be done?

* lint fix

* minor cleanup

* dataloader clear
2024-09-05 12:27:13 +03:00

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
}
}
}
`