OBJECT

TaskLevel

A level of a progressive question.

link GraphQL Schema definition

1type TaskLevel {
2
3# Unique identifier.
4id: ID!
5
6# The question to which the level belongs. Resolves to the concrete question type
7# (e.g. SingleEnvironmentTask or FilesystemTask) — use an inline fragment to
8# select
9# type-specific fields.
10parentTask: CommonTask!
11
12executionEnvironments: [TaskLevelExecutionEnvironment]
13
14}