mirror of
https://github.com/pd4d10/git-touch.git
synced 2026-03-12 10:14:22 -05:00
13 lines
240 B
GraphQL
13 lines
240 B
GraphQL
mutation GhOpenIssue($id: ID!, $open: Boolean!) {
|
|
reopenIssue(input: { issueId: $id }) @include(if: $open) {
|
|
issue {
|
|
closed
|
|
}
|
|
}
|
|
closeIssue(input: { issueId: $id }) @skip(if: $open) {
|
|
issue {
|
|
closed
|
|
}
|
|
}
|
|
}
|