OBJECT

CodeReviewEnvironment

link GraphQL Schema definition

1type CodeReviewEnvironment {
2
3# The execution environment's title
4title: String!
5
6# The execution environment's description.
7description: String!
8
9# The execution environment to run on.
10environment: ExecutionEnvironment!
11
12# The execution environment's initial filesystem
13initialFiles: [FilesystemFile!]!
14
15# The execution environment's code changes
16codeChanges: [CodeChange]!
17
18}