OBJECT
PredictionOutcome
A single Outcome that users can choose in a Prediction Event.
link GraphQL Schema definition
1 type PredictionOutcome { 2 3 # The color of this Outcome. 4 : PredictionOutcomeColor! 5 6 # The unique identifier of the Prediction Outcome. 7 : ID! 8 9 # The title of the Event. 10 : String! 11 12 # The top predictors (sorted by most points spent) of this Outcome. Empty if no 13 # users have predicted this Outcome. 14 : [Prediction!]! 15 16 # The total number of points that have been spent predicting this Outcome. 17 : Int! 18 19 # The total number of users that have predicted this Outcome. 20 : Int! 21 22 }