ENUM

PredictionResult

Possible result types for a Prediction.

link GraphQL Schema definition

1enum PredictionResult {
2
3# The Prediction was incorrect.
4LOSE
5
6# The Prediction was canceled and refunded.
7REFUND
8
9# The Prediction was correct.
10WIN
11}