OBJECT

ChannelViewer

Channel/Viewer pair.

link GraphQL Schema definition

1type ChannelViewer {
2
3# ID of the form userID:channelID.
4id: ID!
5
6# Fetches global badges and channel badges earned by the User on a channel.
7# The returned list of badges will exclude badges that userID has elected to hide.
8# If the user is the authenticated user, Badge.self.isVisibleInChatCard will
9# reflect
10# the user's stored preference, which can be editted on a per-badge basis with the
11# setBadgePublicVisiblity mutation.
12earnedBadges: [Badge!]
13
14}