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