Files
talk/client/coral-framework/graphql/mutations/postComment.graphql
T
2017-04-12 16:23:13 -03:00

17 lines
336 B
GraphQL

#import "../fragments/commentView.graphql"
mutation CreateComment ($comment: CreateCommentInput!) {
createComment(comment: $comment) {
comment {
...commentView
replyCount
replies {
...commentView
}
}
errors {
translation_key
}
}
}