OBJECT

UnmodUserPayload

UnmodUserPayload is the response when remove a user as a moderator.

link GraphQL Schema definition

1type UnmodUserPayload {
2
3# The channel that the user is removed as a moderator to.
4channel: User
5
6# The client error that has occurred.
7# Null if the operation is successful.
8error: UnmodUserError
9
10# The user that is removed as a moderator.
11target: User
12
13}