OBJECT

AddEditorPayload

AddEditorPayload is the response after attemping to add an editor.

link GraphQL Schema definition

1type AddEditorPayload {
2
3# The channel for which the target user will become an editor.
4channel: User
5
6# The client error that has occurred.
7# Null if the operation is successful.
8error: AddEditorError
9
10# The user who became an editor.
11targetUser: User
12
13}