OBJECT
CheermoteTier
CheermoteTier has information about a single tier of a cheermote.
link GraphQL Schema definition
1 type 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. 6 : Int! 7 8 # Can this cheer tier be used as a cheermote. 9 : Boolean! @deprecated( reason: "Scheduled to be removed." ) 10 11 # Can this cheer tier be shown in the Bits card. 12 : Boolean! 13 14 # color is the hex color used to render the number of bits for this tier. 15 : String! @deprecated( reason: "Scheduled to be removed." ) 16 17 # The ID of CheermoteTier. 18 : 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. 23 ( 24 : ChatTheme, 25 : Boolean, 26 : Float 27 ): [CheermoteImage]! @deprecated( reason: "Scheduled to be removed." ) 28 29 # tierID of this specific cheermote icon. For "Kappa100" this will be "100". 30 : ID! @deprecated( reason: "Scheduled to be removed." ) 31 32 }