ENUM

AddEditorErrorCode

AddEditorErrorCode defines a client error that occurred while adding an editor.

link GraphQL Schema definition

1enum AddEditorErrorCode {
2
3# The channel does not exist.
4CHANNEL_NOT_FOUND
5
6# The user who is to become an editor is already an editor.
7TARGET_USER_ALREADY_EDITOR
8
9# The user who is to become an editor does not exist.
10TARGET_USER_NOT_FOUND
11}