OBJECT

ModLogs

An interface to query subsets of the moderation logs information for a given channel.

link GraphQL Schema definition

1type ModLogs {
2
3# The comments left by moderators on a specified user on the given channel.
4comments(targetID: ID!, after: Cursor, first: Int, order: SortOrder): ModLogsCommentConnection
5
6# The chat history for an specified user on a given channel.
7messagesBySender(
8senderID: ID!,
9first: Int,
10after: Cursor,
11order: SortOrder,
12includeMessageCount: Boolean,
13includeTargetedActions: Boolean,
14includeAutoModCaughtMessages: Boolean
15): ModLogsMessageConnection
16
17# The chat moderation history on a specified user on the given channel.
18targetedModActions(targetID: ID!, actionType: ModLogsAction!): ModLogsTargetedModActionsConnection
19
20}