OBJECT

ModLogsTargetedModActionsConnection

Paginated list of mod logs of a user on a channel.

link GraphQL Schema definition

1type ModLogsTargetedModActionsConnection {
2
3# The partial count of targeted mod actions (bans or timeouts), up to 100.
4# Does not count undo actions (unbans or untimeouts).
5actionCount: Int!
6
7# The elements of the list.
8edges: [ModLogsTargetedModActionsEdge!]
9
10# Information about this page of mod logs.
11pageInfo: PageInfo!
12
13}