OBJECT

CheermoteGroup

Contains a group of related Cheermotes that share the same CDN template.

link GraphQL Schema definition

1type CheermoteGroup {
2
3# The Cheermotes which belong to this group.
4nodes: [Cheermote!]!
5
6# The template URL that clients can use to construct the image URL for each
7# cheermote tier.
8# The displayConfig field on Query provides values you'll need to fill in this
9# template,
10# so don't forget to request that as well.
11templateURL: String!
12
13}