INPUT_OBJECT

AddEditorInput

AddEditorInput contains the parameters to add an editor.

link GraphQL Schema definition

1input AddEditorInput {
4
2# The channel for which the target user will become an editor.
3channelID: ID!
8
5# The ID of the user who will become an editor.
6# Either targetUserID or targetUserLogin must be provided.
7targetUserID: ID
12
9# The login of the user who will become an editor.
10# Either targetUserID or targetUserLogin must be provided.
11targetUserLogin: String
13}