OBJECT
ModLogsComment
ModLogsCommentsEntry defines an entry of a user's moderation history on a channel.
link GraphQL Schema definition
1 type ModLogsComment { 2 3 # Author is the moderator that created the comment. 4 : User 5 6 # Channel is where the moderator comment was created. 7 : User 8 9 # Details about the moderator comment. 10 : ModLogsCommentDetails 11 12 # UUID of the moderator comment. 13 : ID! 14 15 # Target is the target user of the moderator comment. 16 : User 17 18 # Timestamp when comment was created. 19 : Time! 20 21 }