OBJECT
RemoveEditorPayload
RemoveEditorPayload is the response after attempting to revoke the editor status of a user.
link GraphQL Schema definition
1 type RemoveEditorPayload { 2 3 # The channel for which the editor status of the target user is removed. 4 : User 5 6 # The client error that has occurred. 7 # Null if the operation is successful. 8 : RemoveEditorError 9 10 # The user whose editor status was revoked. 11 : User 12 13 }