OBJECT

CampaignProperties

All Campaign properties that are running for a given user.

link GraphQL Schema definition

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