OBJECT

WhisperThreadConnection

Paginated list of whisper threads.

link GraphQL Schema definition

1type WhisperThreadConnection {
2
3# The elements of the list.
4edges: [WhisperThreadEdge!]!
5
6# Information about this page.
7pageInfo: PageInfo!
8
9# Total number of whisper threads.
10totalCount: Int!
11
12# Total number of whisper threads containing unread messages for the current user.
13totalUnreadCount: Int
14
15}