OBJECT

CheermoteTier

CheermoteTier has information about a single tier of a cheermote.

link GraphQL Schema definition

1type CheermoteTier {
2
3# bits is the minimum number of bits that are required to render this tier.
4# To render at this tier the cheemote must have used >= this minimum but < the
5# next smallest tier.
6bits: Int!
7
8# Can this cheer tier be used as a cheermote.
9canCheer: Boolean! @deprecated( reason: "Scheduled to be removed." )
10
11# Can this cheer tier be shown in the Bits card.
12canShowInBitsCard: Boolean!
13
14# color is the hex color used to render the number of bits for this tier.
15color: String! @deprecated( reason: "Scheduled to be removed." )
16
17# The ID of CheermoteTier.
18id: ID!
19
20# images are urls for the cheermote that match various settings.
21# This can optionally be filtered to only certain variations or called without
22# arguments to return all available images.
23images(
24theme: ChatTheme,
25isAnimated: Boolean,
26dpiScale: Float
27): [CheermoteImage]! @deprecated( reason: "Scheduled to be removed." )
28
29# tierID of this specific cheermote icon. For "Kappa100" this will be "100".
30tierID: ID! @deprecated( reason: "Scheduled to be removed." )
31
32}