OBJECT
ModLogs
An interface to query subsets of the moderation logs information for a given channel.
link GraphQL Schema definition
1 type ModLogs { 2 3 # The comments left by moderators on a specified user on the given channel. 4 (: ID!, : Cursor, : Int, : SortOrder): ModLogsCommentConnection 5 6 # The chat history for an specified user on a given channel. 7 ( 8 : ID!, 9 : Int, 10 : Cursor, 11 : SortOrder, 12 : Boolean, 13 : Boolean, 14 : Boolean 15 ): ModLogsMessageConnection 16 17 # The chat moderation history on a specified user on the given channel. 18 (: ID!, : ModLogsAction!): ModLogsTargetedModActionsConnection 19 20 }