OBJECT

CommunityPointsRewardSummary

A summary of information about redemptions of a given custom community points reward. Only returns results for logged-in, authorized users, otherwise returns a nil response.

link GraphQL Schema definition

1type CommunityPointsRewardSummary {
2
3# The total number of unfulfilled redemptions of this reward on the channel.
4count: Int!
5
6# If the count is at the max, the true count could be any number greater than or
7# equal to the count.
8# Clients should indicate that there could be more redemptions than the number
9# indicates.
10# For example, if count = 100 and isCountAtMaximum = true, clients could show
11# "100+".
12isCountAtMaximum: Boolean!
13
14# The reward being summarized.
15node: CommunityPointsCustomReward!
16
17}