mirror of
https://github.com/git-touch/git-touch
synced 2024-12-19 03:33:42 +01: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
|
||
|
}
|
||
|
}
|
||
|
}
|