OBJECT

Prediction

A single Prediction made by a user on a Prediction Event.

link GraphQL Schema definition

1type Prediction {
2
3# The Event that this Prediction relates to.
4event: PredictionEvent
5
6# The unique identifier of the Prediction.
7id: ID!
8
9# Whether the Prediction's results have been acknowledged by the user. Null if the
10# Prediction has not been resolved yet.
11isResultAcknowledged: Boolean
12
13# The Outcome that was Predicted.
14outcome: PredictionOutcome
15
16# The number of points that the user spent on this Prediction.
17points: Int!
18
19# The number of points won by the user for this Prediction. Null if the Prediction
20# has not been resolved yet.
21pointsWon: Int
22
23# The timestamp of when the user initially made this Prediction.
24predictedAt: Time!
25
26# The result of this Prediction. Null if the Prediction has not been resolved or
27# refunded yet.
28result: PredictionResult
29
30# The timestamp of when the user most recently updated this Prediction.
31updatedAt: Time!
32
33# The user that made this Prediction.
34user: User
35
36}