OBJECT
CommunityPointsClaim
Points that are available for a user to click to claim in a channel.
link GraphQL Schema definition
1 type CommunityPointsClaim { 2 3 # The claim's unique ID. 4 : 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. 9 : [CommunityPointsMultiplier!]! 10 11 # The baseline points this claim will grant, before applying multipliers. 12 : Int! 13 14 # The total points this claim will grant. 15 : Int! 16 17 }