OBJECT
Campaign
A visible campaign on a given user's channel.
link GraphQL Schema definition
1 type Campaign { 2 3 # The domain that campaign belongs to. 4 : String! 5 6 # The time the campaign ends being active. 7 : Time! 8 9 # Unique identifier for the campaign. 10 : ID! 11 12 # The objectives users can progress in within this campaign. 13 : [CampaignObjective!]! 14 15 # The time the campaign becomes active. 16 : Time! 17 18 }