Files
GitHawk/gql/AddComment.graphql
2017-07-15 00:41:57 -04:00

11 lines
239 B
GraphQL

mutation AddComment($subject_id: ID!, $body: String!) {
addComment(input:{subjectId: $subject_id, body: $body}) {
commentEdge {
node {
...nodeFields
...reactionFields
...commentFields
}
}
}
}