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