mirror of
https://github.com/git-touch/git-touch
synced 2024-12-18 19:22:54 +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
|
|
}
|
|
}
|
|
}
|