OBJECT
TestRunStep
Test Run Step Type
link GraphQL Schema definition
1 type TestRunStep { 2 3 # Id of the Test Run Step. 4 : String 5 6 # Status of the Test Run Step. 7 : StepStatus 8 9 # Action of the Test Run Step. 10 : String 11 12 # Data of the Test Run Step. 13 : String 14 15 # Result of the Test Run Step. 16 : String 17 18 # Custom Fields of the Test Run Step. 19 : [TestRunCustomStepField] 20 21 # Comment of the Test Run Step. 22 : String 23 24 # Evidence of the Test Run Step. 25 : [Evidence] 26 27 # Attachments of the Test Run Step. 28 : [Attachment] 29 30 # Defects of the Test Run Step. 31 : [String] 32 33 # Actual Result of the Test Run Step. 34 : String 35 36 }