OBJECT
ModLogsTargetedModActionsEntry
ModLogsTargetedModActionsEntry defines an entry of a user's moderation history on a channel.
link GraphQL Schema definition
1 type ModLogsTargetedModActionsEntry { 2 3 # Action is the mod action of the entry. 4 : ModLogsAction! 5 6 # Channel is where the mod action was taken. 7 : User 8 9 # Details about the mod action. 10 : TargetedModActionDetails 11 12 # The UUID of the entry. 13 : ID! 14 15 # Target is the target user of the mod action. 16 : User 17 18 # Timestamp when entry was created. 19 : Time! 20 21 # User is the mod that created the action. 22 : User 23 24 }