OBJECT
CheermoteCampaign
A campaign that is in association with a cheermote. Like, Old Spice could have a cheermote with Terry Crew's head that they will sponsor X Bits that get added on to cheers that use their cheermote.
link GraphQL Schema definition
1 type CheermoteCampaign { 2 3 # The percentage of remaining bits that can be added to cheers. 4 : Float! 5 6 # An optional field that shows the user how many bits are being used to sponsor 7 # the campaign. 8 : Int 9 10 # An optional field that shows the user how many bits have been used out of the 11 # sponsored pool. 12 : Int 13 14 # Image url for the brand image. 15 : String! 16 17 # The name of the brand, used in strings. 18 : String! 19 20 # The cheermote campaign ID. This is unique. 21 : ID! 22 23 # The minimum bits amount to make a cheer add bits from the sponsored campaign. 24 : Int! 25 26 # The nullable edge that relates the user to the campaign. 27 : CheermoteCampaignSelfEdge 28 29 # Thresholds for matching on sponsored cheering. 30 : [CheermoteCampaignThreshold!]! 31 32 # Amount of bits that an individual user can contribute. 33 : Int! 34 35 }