OBJECT

ChannelModerationActionOnChannelEntry

Moderation Actions relating to another channel. ex: host, unhost, raid, unraid.

link GraphQL Schema definition

1type ChannelModerationActionOnChannelEntry implements ChannelModerationActionEntry {
2
3# The action that was taken.
4action: ModerationAction!
5
6# Timestamp when action was taken.
7createdAt: Time!
8
9# UUID of the moderation action.
10id: ID!
11
12# Is auto hosted.
13isAutoHosted: Boolean!
14
15# Is hosted after raiding.
16isHostedAfterRaiding: Boolean!
17
18# The moderator who took the action.
19moderator: User
20
21# Should the viewer count for host or raids should be shown.
22shouldRevealViewerCount: Boolean!
23
24# Target channel for hosting and raiding.
25target: User
26
27# How many users participated in a host or raid.
28viewerCount: Int
29
30}

link Required by

This element is not required by anyone