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

1type CheermoteCampaign {
2
3# The percentage of remaining bits that can be added to cheers.
4bitsPercentageRemaining: Float!
5
6# An optional field that shows the user how many bits are being used to sponsor
7# the campaign.
8bitsTotal: Int
9
10# An optional field that shows the user how many bits have been used out of the
11# sponsored pool.
12bitsUsed: Int
13
14# Image url for the brand image.
15brandImageURL: String!
16
17# The name of the brand, used in strings.
18brandName: String!
19
20# The cheermote campaign ID. This is unique.
21id: ID!
22
23# The minimum bits amount to make a cheer add bits from the sponsored campaign.
24minimumBitsAmount: Int!
25
26# The nullable edge that relates the user to the campaign.
27self: CheermoteCampaignSelfEdge
28
29# Thresholds for matching on sponsored cheering.
30thresholds: [CheermoteCampaignThreshold!]!
31
32# Amount of bits that an individual user can contribute.
33userLimit: Int!
34
35}