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