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

1type CampaignTrigger {
2
3# Short description about the trigger.
4description: String!
5
6# Unique identifier for the trigger.
7id: ID!
8
9# Whether the trigger is currently active.
10isActive: Boolean!
11
12# List of rewards attached to this trigger.
13rewards: [TournamentReward!]
14
15# Short title for the trigger.
16title: String!
17
18# Maximum amount of trigger quantity required for the trigger (e.g. # of bits in
19# cheer).
20triggerAmountMax: Int!
21
22# Minimum amount of trigger quantity required for the trigger (e.g. # of bits in
23# cheer).
24triggerAmountMin: Int!
25
26# String defining the trigger type (e.g. CHEER).
27triggerType: TriggerType!
28
29}