OBJECT

FilesystemTask

link GraphQL Schema definition

1type FilesystemTask implements 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*] The question sets associated with this question.
25sets: [String]!
26
27# Whether the question was used within the configured threshold.
28isRecentlyUsed: Boolean!
29
30# The question execution environments.
31executionEnvironments: [FilesystemExecutionEnvironment!]!
32
33# Whether network access is enabled.
34enableNetwork: Boolean!
35
36# Whether persistent session support is enabled. Always true for new questions.
37persistentSessionSupport: Boolean!
38
39# Whether persistent session preview is enabled.
40persistentSessionPreview: Boolean!
41
42# Whether the question uses an AI checker. Derived from whether a response rubric
43# is set.
44hasAiChecker: Boolean!
45
46# The response rubric for AI checker evaluation.
47responseRubric: String
48
49# View configuration overrides.
50viewOverrides: ViewOverrides
51
52}

link Required by