OBJECT

PredictionEventSelfEdge

The relationship between a Prediction Event and the logged in user.

link GraphQL Schema definition

1type PredictionEventSelfEdge {
2
3# The user's Prediction on the Event. Null if the user does not have a Prediction
4# on the Event.
5prediction: Prediction
6
7# A restriction on the user participating in this Event. Null if there are no
8# restrictions. If non-null, the user can only participate in Spectator Mode.
9restriction: UserPredictionEventRestriction
10
11}