OBJECT

CheerInfo

CheerInfo is the channel-specific bits/cheer settings and current state.

link GraphQL Schema definition

1type CheerInfo {
2
3# Gets the list of available bits badges the user offers.
4availableBadges: [Badge!]
5
6# Badge tier emotes are the emotes in this channel that are unlocked when a user
7# unlocks a Bits badge tier.
8# Filter determines which emotes are returned.
9badgeTierEmotes(filter: BadgeTierEmotesFilter!): [Emote]!
10
11# cheerGroups contain all of the channel-specific Cheermotes, grouped by type.
12cheerGroups: [CheermoteGroup!]!
13
14# emotes are the metadata about the different cheermotes that can be use to cheer
15# in this channel.
16# This can optionally be filtered to return only certain cheermotes by either
17# prefix and/or emote types.
18# If `prefixes` is null or empty all available cheermotes will be returned, and
19# then `type` filter
20# will be applied to the result unless it's null or empty.
21# If includeUpperTiers is true, the upper tiers of the cheermotes will be
22# returned.
23emotes(
24prefixes: [String!],
25type: [CheermoteType!],
26includeUpperTiers: Boolean,
27includeSponsored: Boolean
28): [Cheermote]! @deprecated( reason: "Scheduled to be removed. Use cheerGroups instead" )
29
30# hashtags for augmenting cheering with different actions, such as #charity will
31# donate bits to
32# charity, or like #eddie to cheer and support Eddie.
33hashtags(
34first: Int,
35after: String
36): BitsHashtagConnection @deprecated( reason: "Hashtags is no longer a supported feature." )
37
38id: ID!
39
40# leaderboard contains the top users by number of bits cheered for the channel.
41leaderboard(first: Int!): BitsLeaderboard
42
43# recentTimeoutMs is the remaining duration the recent message will be pinned for.
44# This feature is deprecated and will always return 0.
45recentTimeoutMs: Int! @deprecated( reason: "Recent cheer is a a removed feature, this functionality shouldn't be used anymore." )
46
47# settings are the channel-specific cheer settings.
48settings: CheerSettings!
49
50}