mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-06-05 06:49:56 +08:00
12 lines
266 B
GraphQL
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
|
|
}
|
|
}
|
|
}
|
|
} |