OBJECT

Result

Result Type

link GraphQL Schema definition

1type Result {
2
3# Output if exist an error or a failure (JUNIT, XUNIT, NUNIT, TESTNG)
4log: String
5
6# Examples of the Result.
7examples: [ResultsExample]
8
9# Whether or not the Result was imported.
10wasImported: String
11
12# Duration of the Result.
13duration: Float
14
15# Status of the Result.
16status: StepStatus
17
18# Name of the Result.
19name: String
20
21# Hooks of the Results.
22hooks: [ResultsStep]
23
24# Backgrounds of the Results.
25backgrounds: [ResultsStep]
26
27# Steps of the Results.
28steps: [ResultsStep]
29
30}