OBJECT

ModUserPayload

ModUserPayload is the response when adding a user as a moderator.

link GraphQL Schema definition

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