OBJECT

DatabaseTask

A database question.

link GraphQL Schema definition

1type DatabaseTask implements CommonTask {
2
3# Unique identifier.
4id: ID!
5
6# The display name of the task.
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
28executionEnvironments: DatabaseEnvironmentType
29
30}

link Required by