OBJECT

Campaign

A visible campaign on a given user's channel.

link GraphQL Schema definition

1type Campaign {
2
3# The domain that campaign belongs to.
4domain: String!
5
6# The time the campaign ends being active.
7endDate: Time!
8
9# Unique identifier for the campaign.
10id: ID!
11
12# The objectives users can progress in within this campaign.
13objectives: [CampaignObjective!]!
14
15# The time the campaign becomes active.
16startDate: Time!
17
18}