ENUM

ResolvePredictionEventErrorCode

Possible error codes from the resolvePredictionEvent mutation.

link GraphQL Schema definition

1enum ResolvePredictionEventErrorCode {
2
3# The current user is forbidden from resolving this Prediction Event.
4FORBIDDEN
5
6# This Prediction Event has already either been resolved or canceled, and as such
7# this action cannot be taken.
8EVENT_ENDED
9
10# An unknown error occurred.
11UNKNOWN
12}