OBJECT

MakePredictionError

An error returned from the makePrediction mutation.

link GraphQL Schema definition

1type MakePredictionError {
2
3# Code describing the error.
4code: MakePredictionErrorCode!
5
6# If the error code is MAX_POINTS_PER_EVENT, this will specify how many total
7# points the user is allowed to spend.
8maxPointsPerEvent: Int
9
10# If the error code is MAX_POINTS_PER_EVENT, this will specify how many points the
11# user has already spent.
12userPointsSpent: Int
13
14}