OBJECT

ModLogsComment

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

link GraphQL Schema definition

1type ModLogsComment {
2
3# Author is the moderator that created the comment.
4author: User
5
6# Channel is where the moderator comment was created.
7channel: User
8
9# Details about the moderator comment.
10details: ModLogsCommentDetails
11
12# UUID of the moderator comment.
13id: ID!
14
15# Target is the target user of the moderator comment.
16target: User
17
18# Timestamp when comment was created.
19timestamp: Time!
20
21}