OBJECT

GlobalCheerConfig

GlobalCheerConfig contains information about (1) How to display Cheers and (2) What Cheermotes are globally available.

link GraphQL Schema definition

1type GlobalCheerConfig {
2
3# The CheermoteDisplayConfig provides information about how Cheermotes can be
4# displayed
5# This includes things like the possible sizes, colors, backgrounds, and display
6# order.
7displayConfig: CheermoteDisplayConfig!
8
9# The Cheermote Groups containing the Global Cheermotes.
10groups: [CheermoteGroup!]!
11
12}