INTERFACE

ChannelModerationActionEntry

An entry of a moderation action performed on a channel.

link GraphQL Schema definition

1interface 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# The moderator who took the action.
13moderator: User
14
15}