ENUM
CommentCannotEditReason
The possible errors that will prevent a user from editting a comment.
link GraphQL Schema definition
1 enum CommentCannotEditReason { 2 3 # You must be the author or have write access to this repository to edit this 4 # comment. 5 6 7 # Unable to create comment because issue is locked. 8 9 10 # You must be logged in to edit this comment. 11 12 13 # Repository is under maintenance. 14 15 16 # At least one email address must be verified to edit this comment. 17 18 }
link Required by
- CommentRepresents a comment.
- CommitCommentRepresents a comment on a given Commit.
- GistCommentRepresents a comment on an Gist.
- IssueAn Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project.
- IssueCommentRepresents a comment on an Issue.
- PullRequestA repository pull request.
- PullRequestReviewA review object for a given pull request.
- PullRequestReviewCommentA review comment associated with a given repository pull request.