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
1 input EditScorableFilesystemTaskInput { 4 2 # Unique question name. 3 : String 7 5 # The labels for this question. 6 : [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'. 11 : [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'. 18 : [EditFilesystemLevelInput!] 22 20 # Whether network access is enabled. 21 : Boolean 25 23 # Whether persistent session preview is enabled. 24 : 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. 30 : String 34 32 # View configuration overrides. 33 : ViewOverridesInput 35 }