ENUM

CancelPredictionEventErrorCode

Possible error codes from the cancelPredictionEvent mutation.

link GraphQL Schema definition

1enum CancelPredictionEventErrorCode {
2
3# The current user is forbidden from cancelling 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}