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