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!]
11
8# The question execution environments. Each environment must include at least one
9# unit test with a positive weight.
10executionEnvironments: [FilesystemExecutionEnvironmentInput!]
14
12# Whether network access is enabled.
13enableNetwork: Boolean
17
15# Whether persistent session preview is enabled.
16persistentSessionPreview: Boolean
23
18# The response rubric for AI checker evaluation.
19# When provided and non-empty, the question will use an AI checker (hasAiChecker
20# will be true).
21# When set to an empty string, the AI checker will be disabled.
22responseRubric: String
26
24# View configuration overrides.
25viewOverrides: ViewOverridesInput
27}

link Required by