INPUT_OBJECT

CreateScorableFilesystemTaskInput

Input for creating a scorable-filesystem question. Each execution environment must include at least one unit test with a positive weight, used for automated scoring.

link GraphQL Schema definition

1input CreateScorableFilesystemTaskInput {
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. Defaults to true.
13enableNetwork: Boolean
17
15# Whether persistent session preview is enabled. Defaults to false.
16persistentSessionPreview: Boolean
22
18# The response rubric for AI checker evaluation. When provided and non-empty,
19# the question will use an AI checker in addition to unit-test scoring
20# (hasAiChecker will be true).
21responseRubric: String
25
23# View configuration overrides.
24viewOverrides: ViewOverridesInput
26}

link Required by