Unread Mention Me Channels Query
Paginated query for channels that contain unread @me messages.
Implements the PageableQuery interface to provide paginated loading of channels that have unread messages mentioning the current user. Create an instance via BaseChannel.createUnreadMentionMeChannelsQuery.
Usage example:
val query = BaseChannel.createUnreadMentionMeChannelsQuery(
UnreadMentionMeChannelsParams(
channelTypes = listOf(ChannelType.GROUP, ChannelType.COMMUNITY)
)
)
// Load first page
query.loadNextPage { list, error ->
if (error == null && list != null) {
// Handle data
}
}Content copied to clipboard
Parameters
params
Query parameters