INPUT_OBJECT

EditFilesystemLevelInput

Input for editing a level of a progressive scorable-filesystem question.

link GraphQL Schema definition

1input EditFilesystemLevelInput {
5
2# The id of an existing level to update. Omit to create a new level. Levels whose
3# id is absent from the input are removed.
4id: ID
8
6# The level's problem statement.
7description: String
12
9# The level's execution environments. Each must include at least one unit test
10# with a positive weight.
11executionEnvironments: [FilesystemLevelExecutionEnvironmentInput!]
13}