OBJECT
CampaignTrigger
This type holds information about a campaign trigger, which belongs to a campaign. A trigger has a list of rewards that can be earned by various one time events.
link GraphQL Schema definition
1 type CampaignTrigger { 2 3 # Short description about the trigger. 4 : String! 5 6 # Unique identifier for the trigger. 7 : ID! 8 9 # Whether the trigger is currently active. 10 : Boolean! 11 12 # List of rewards attached to this trigger. 13 : [TournamentReward!] 14 15 # Short title for the trigger. 16 : String! 17 18 # Maximum amount of trigger quantity required for the trigger (e.g. # of bits in 19 # cheer). 20 : Int! 21 22 # Minimum amount of trigger quantity required for the trigger (e.g. # of bits in 23 # cheer). 24 : Int! 25 26 # String defining the trigger type (e.g. CHEER). 27 : TriggerType! 28 29 }