OBJECT

SingleEnvironmentTask

A question that is in the single-environment format

link GraphQL Schema definition

1type SingleEnvironmentTask implements CommonTask {
2
3# Unique identifier.
4id: ID!
5
6# The display name of the question.
7title: String!
8
9# The text of the question that will be shown to the user.
10description: String!
11
12# The question type
13generalType: GeneralType!
14
15# The question overview type
16overviewType: String!
17
18# The question mode
19mode: TaskMode!
20
21# The labels associated with this question.
22labels: [String]!
23
24# Max score of the question.
25maxScore: Int!
26
27# The question levels of a progressive question
28levels: [TaskLevel]
29
30# [*Internal use only*]
31# The question sets associated with this question.
32sets: [String]!
33
34}