INTERFACE

CommonTask

A common question is a question that may be asked during an assessment.

link GraphQL Schema definition

1interface CommonTask {
2
3# Unique identifier.
4id: ID!
5
6# The display name of the question.
7title: String!
8
9# The question type
10generalType: GeneralType!
11
12# The question overview type
13overviewType: String!
14
15# The question mode
16mode: TaskMode!
17
18# The labels associated with this question.
19labels: [String]!
20
21# Max score of the question.
22maxScore: Int!
23
24# [*Internal use only*]
25# The question sets associated with this question.
26sets: [String]!
27
28}