OBJECT

CreateTestExecutionResult

Create Test Execution Result type

link GraphQL Schema definition

1type CreateTestExecutionResult {
2
3# Test Execution that was created.
4testExecution: TestExecution
5
6# Test Environments that were created.
7createdTestEnvironments: [String]
8
9# Warnings generated during the operation.
10warnings: [String]
11
12}