OBJECT

PredictionOutcome

A single Outcome that users can choose in a Prediction Event.

link GraphQL Schema definition

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