Github API for deleting issues #39520
Answered
by
LangLangBart
thilllon
asked this question in
API and Webhooks
-
Select Topic AreaQuestion BodyCan't find api for deleting issues. |
Beta Was this translation helpful? Give feedback.
Answered by
LangLangBart
Nov 19, 2022
Replies: 1 comment
-
You are right, no GitHub Docs - REST API to delete an issue. Alternative way: GitHub Docs - GraphQL API - mutation:deleteissue querymutation {
deleteIssue(input: {issueId: "I_kwDOIV8V6M5WM_mv", clientMutationId: "test issue delete"}) {
clientMutationId
}
} result{
"data": {
"deleteIssue": {
"clientMutationId": "test issue delete"
}
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
thilllon
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You are right, no GitHub Docs - REST API to delete an issue.
Alternative way: GitHub Docs - GraphQL API - mutation:deleteissue
query
result