OBJECT

CommunityPointsClaim

Points that are available for a user to click to claim in a channel.

link GraphQL Schema definition

1type CommunityPointsClaim {
2
3# The claim's unique ID.
4id: ID!
5
6# The multipliers that will affect this claim.
7# Multipliers start at a base of 1.0, and are additive.
8# Two multipliers of [0.2] and [0.3] will give a final multiplier of 1.5x.
9multipliers: [CommunityPointsMultiplier!]!
10
11# The baseline points this claim will grant, before applying multipliers.
12pointsEarnedBaseline: Int!
13
14# The total points this claim will grant.
15pointsEarnedTotal: Int!
16
17}