mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-05-30 20:22:54 +08:00
11 lines
239 B
GraphQL
11 lines
239 B
GraphQL
mutation AddComment($subject_id: ID!, $body: String!) {
|
|
addComment(input:{subjectId: $subject_id, body: $body}) {
|
|
commentEdge {
|
|
node {
|
|
...nodeFields
|
|
...reactionFields
|
|
...commentFields
|
|
}
|
|
}
|
|
}
|
|
} |