OBJECT

FilesystemExecutionEnvironment

link GraphQL Schema definition

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