INPUT_OBJECT

CodeReviewEnvironmentInput

link GraphQL Schema definition

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