OBJECT

CompetitionError

Information to communicate to the user about an error state.

link GraphQL Schema definition

1type CompetitionError {
2
3# The fields failing to pass automod (on an automod failure).
4automodFailedFields: [CompetitionAutomodField!]
5
6# The error code.
7code: CompetitionErrorCode!
8
9# The error message string.
10message: String!
11
12}

link Required by