INPUT_OBJECT

FilesystemExecutionEnvironmentInput

link GraphQL Schema definition

1input FilesystemExecutionEnvironmentInput {
4
2# The execution environment's title.
3title: String!
7
5# The execution environment's key. Auto-generated if omitted.
6key: String
10
8# The execution environment to run on.
9environment: ExecutionEnvironmentOrTestingTool!
13
11# The environment type.
12environmentType: FilesystemEnvironmentType!
16
14# The execution environment's description.
15description: String!
19
17# The execution environment's filesystem.
18files: [FilesystemFileInput!]!
22
20# Paths that should be expanded by default in the file tree.
21pathsExpandedByDefault: [String!]
25
23# Files that should be open by default in the editor.
24filesOpenByDefault: [String!]
28
26# Override for the testing tool.
27testingTool: ExecutionEnvironmentOrTestingTool
31
29# The execution time limit in milliseconds.
30timeLimit: Int
34
32# Unit tests for scorable environments.
33unitTests: [UnitTestInput!]
37
35# File path patterns to ignore.
36ignoredPaths: [String!]
40
38# Command to run after the environment is created.
39postCreateCommand: String
41}