INPUT_OBJECT

EditScorableFilesystemTaskInput

Input for editing a scorable-filesystem question. When executionEnvironments is replaced, each new environment must include at least one unit test with a positive weight.

link GraphQL Schema definition

1input EditScorableFilesystemTaskInput {
4
2# Unique question name.
3name: String
7
5# The labels for this question.
6labels: [String!]
12
8# The execution environments for a flat (single-level) question. Each environment
9# must include at least one unit test with a positive weight. Mutually exclusive
10# with 'levels'.
11executionEnvironments: [FilesystemExecutionEnvironmentInput!]
19
13# The ordered levels of a progressive question. Levels are matched to existing
14# ones by 'id';
15# levels without an 'id' are created, and existing levels absent from the list are
16# removed.
17# At least 2 levels must remain. Mutually exclusive with 'executionEnvironments'.
18levels: [EditFilesystemLevelInput!]
22
20# Whether network access is enabled.
21enableNetwork: Boolean
25
23# Whether persistent session preview is enabled.
24persistentSessionPreview: Boolean
31
26# The response rubric for AI checker evaluation.
27# When provided and non-empty, the question will use an AI checker (hasAiChecker
28# will be true).
29# When set to an empty string, the AI checker will be disabled.
30responseRubric: String
34
32# View configuration overrides.
33viewOverrides: ViewOverridesInput
35}

link Required by