Files
GitHawk/gql/AddComment.graphql
2017-09-27 22:33:42 -04:00

12 lines
266 B
GraphQL

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