mirror of
https://github.com/wassname/talk.git
synced 2026-07-03 10:37:10 +08:00
17 lines
336 B
GraphQL
17 lines
336 B
GraphQL
#import "../fragments/commentView.graphql"
|
|
|
|
mutation CreateComment ($comment: CreateCommentInput!) {
|
|
createComment(comment: $comment) {
|
|
comment {
|
|
...commentView
|
|
replyCount
|
|
replies {
|
|
...commentView
|
|
}
|
|
}
|
|
errors {
|
|
translation_key
|
|
}
|
|
}
|
|
}
|