IssueComment¶
-
class
github.IssueComment.
IssueComment
¶ This class represents IssueComments.
The reference can be found here https://docs.github.com/en/rest/reference/issues#comments
-
delete
() → None¶
-
edit
(body: str) → None¶
-
get_reactions
() → PaginatedList[Reaction]¶
-
create_reaction
(reaction_type: str) → Reaction¶
-
delete_reaction
(reaction_id: int) → bool¶
-
minimize
(reason: str = 'OUTDATED') → bool¶ - Calls
POST /graphql with a mutation to minimize comment
<https://docs.github.com/en/graphql/reference/mutations#minimizecomment>
-
unminimize
() → bool¶ - Calls
POST /graphql with a mutation to unminimize comment
<https://docs.github.com/en/graphql/reference/mutations#unminimizecomment>
-