OBJECT

CodeReviewTask

link GraphQL Schema definition

1type CodeReviewTask implements CommonTask {
2
3# Unique identifier.
4id: ID!
5
6# The title of the question is the more user-friendly version of the question
7# name.
8title: String!
9
10# The question execution environments.
11executionEnvironments: [CodeReviewEnvironment]!
12
13# The question type
14generalType: GeneralType!
15
16# The question overview type
17overviewType: String!
18
19# The question mode
20mode: TaskMode!
21
22# The labels associated with this question.
23labels: [String]!
24
25# Max score of the question.
26maxScore: Int!
27
28# [*Internal use only*]
29# The question sets associated with this question.
30sets: [String]!
31
32}

link Required by