INTERFACE
CommonTask
A common question is a question that may be asked during an assessment.
link GraphQL Schema definition
1 interface CommonTask { 2 3 # Unique identifier. 4 : ID! 5 6 # The display name of the question. 7 : String! 8 9 # The question type 10 : GeneralType! 11 12 # The question overview type 13 : String! 14 15 # The question mode 16 : TaskMode! 17 18 # The labels associated with this question. 19 : [String]! 20 21 # Max score of the question. 22 : Int! 23 24 # [*Internal use only*] 25 # The question sets associated with this question. 26 : [String]! 27 28 }
link Required by
- CodeReviewTask
- DatabaseTaskA database question.
- InterviewTemplateAn interview template defines a set of questions relevant for a specialized interview
- Mutation
- Query
- SingleEnvironmentTaskA question that is in the single-environment format
- TestSessionTaskA question given to the test taker in a test instance. - Cost complexity: 1