OBJECT

Cheermote

Cheermote is the metadata about different variations of a single cheermote that can be use to cheer in this channel.

link GraphQL Schema definition

1type Cheermote {
2
3# A nullable campaign associated with the cheermote. This would only be attached
4# to
5# cheermotes that are of the CheermoteType.SPONSORED.
6campaign: CheermoteCampaign
7
8# The ID of the cheermote.
9id: ID!
10
11# prefix for this cheering action (Kappa, cheer, Kreygasm, etc).
12# Any case-insensitive match of this prefix directly followed by a number
13# (Kappa100, kappa100, kApPa100, etc) is to be considered a cheering message.
14prefix: String!
15
16# tiers are bits breakpoints for different images for this cheermote.
17tiers: [CheermoteTier!]!
18
19# type is the kind of cheermote (custom vs 1st- or 3rd-party global).
20type: CheermoteType!
21
22}