mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-04-16 22:40:44 +08:00
8 lines
184 B
GraphQL
8 lines
184 B
GraphQL
mutation AddReaction($subject_id: ID!, $content: ReactionContent!) {
|
|
addReaction(input:{subjectId: $subject_id, content:$content}) {
|
|
subject{
|
|
...reactionFields
|
|
}
|
|
}
|
|
}
|