INPUT_OBJECT

RemoveEditorInput

RemoveEditorInput contains the parameters to revoke the editor status from a user for a channel.

link GraphQL Schema definition

1input RemoveEditorInput {
4
2# The channel from which the editor status of the user will be revoked.
3channelID: ID!
8
5# The ID of the user whose editor status will be revoked.
6# Either targetUserID or targetUserLogin must be provided.
7targetUserID: ID
12
9# The login of the user whose editor status will be revoked.
10# Either targetUserID or targetUserLogin must be provided.
11targetUserLogin: String
13}