OBJECT
CampaignProperties
All Campaign properties that are running for a given user.
link GraphQL Schema definition
1 type CampaignProperties { 2 3 # All the current active campaigns for a given user. 4 : [String!] 5 6 # All the current domains a user is participating in. 7 : [String!] 8 9 # Determines whether or not a user has a pass they can sell on their channel. 10 : Boolean! 11 12 # Objectives users can progress within all the active campaigns for the first 13 # domain. 14 : [CampaignObjective!] 15 16 # Triggers users can activate to get / give rewards within this campaign. 17 : [CampaignTrigger!] 18 19 }