OBJECT

ModLogsMessageConnection

Paginated list of messages from a single sender in a channel.

link GraphQL Schema definition

1type ModLogsMessageConnection {
2
3# The elements of the list.
4edges: [ModLogsMessageEdge!]!
5
6# The partial count of messages (up to 1000).
7# Empty if includeMessageCount was not set when the query was requested.
8messageCount: Int
9
10# Information about this page.
11pageInfo: PageInfo!
12
13}