OBJECT

CampaignCheergroup

This type holds the information about the grouping of objectives. Each group has a list of cheermotes that progress objectives in this particular group.

link GraphQL Schema definition

1type CampaignCheergroup {
2
3# A list of upper cased cheermotes that can advance objectives belonging to this
4# group.
5cheerCodes: [String!]!
6
7# An a parent group this cheer group belongs to (e.g. "North America").
8division: String
9
10# A url to the image representing this group (e.g. team icon in esports context).
11imageUrl: String!
12
13# A name representing this group (e.g. team name in esports context).
14name: String!
15
16}