ENUM

CommentCannotEditReason

The possible errors that will prevent a user from editting a comment.

link GraphQL Schema definition

1enum CommentCannotEditReason {
2
3# You must be the author or have write access to this repository to edit this
4# comment.
5INSUFFICIENT_ACCESS
6
7# Unable to create comment because issue is locked.
8LOCKED
9
10# You must be logged in to edit this comment.
11LOGIN_REQUIRED
12
13# Repository is under maintenance.
14MAINTENANCE
15
16# At least one email address must be verified to edit this comment.
17VERIFIED_EMAIL_REQUIRED
18}