OBJECT

UserPredictionStatistics

Statistics concerning how a user has performed when making Predictions in a given channel.

link GraphQL Schema definition

1type UserPredictionStatistics {
2
3# The total number of events that this user has participated in on this channel.
4eventsTotal: Int!
5
6# The number of events that this user has successfully predicted in this channel.
7eventsWon: Int!
8
9# The most recent prediction made by this user on this channel. Null if they have
10# not made a Prediction recently.
11mostRecentPrediction: Prediction
12
13# The total number of points that this user has spent making predictions in this
14# channel.
15pointsUsed: Int!
16
17# The total number of points that this user has won from correct predictions in
18# this channel.
19pointsWon: Int!
20
21# The highest number of points that this user has won from a correct prediction in
22# this channel.
23pointsWonMax: Int!
24
25# The user's current win-streak in Events on this channel.
26winStreak: Int!
27
28# The highest win-streak in Events on this channel the user has ever had.
29winStreakMax: Int!
30
31}