OBJECT
ExpandedStep
Expanded test step type
link GraphQL Schema definition
1 type ExpandedStep { 2 3 # Id of the Step. 4 : String 5 6 # Id of the Lib Step Library 7 : String 8 9 # Action of the Step. 10 : String 11 12 # Data of the Step. 13 : String 14 15 # Result of the Step. 16 : String 17 18 # Attachments of the Step. 19 : [Attachment] 20 21 # Custom Fields of the Step. 22 : [CustomStepField] 23 24 # The issue id of the called test with the step 25 : String 26 27 # The issue id of the test calling the step 28 : String 29 30 }