OBJECT

ModLogsTargetedModActionsEntry

ModLogsTargetedModActionsEntry defines an entry of a user's moderation history on a channel.

link GraphQL Schema definition

1type ModLogsTargetedModActionsEntry {
2
3# Action is the mod action of the entry.
4action: ModLogsAction!
5
6# Channel is where the mod action was taken.
7channel: User
8
9# Details about the mod action.
10details: TargetedModActionDetails
11
12# The UUID of the entry.
13id: ID!
14
15# Target is the target user of the mod action.
16target: User
17
18# Timestamp when entry was created.
19timestamp: Time!
20
21# User is the mod that created the action.
22user: User
23
24}