OBJECT
Step
Test Step type
link GraphQL Schema definition
1 type Step { 2 3 # Id of the Step. 4 : String 5 6 # Action of the Step. 7 : String 8 9 # Data of the Step. 10 : String 11 12 # Result of the Step. 13 : String 14 15 # Attachments of the Step. 16 : [Attachment] 17 18 # Custom Fields of the Step. 19 : [CustomStepField] 20 21 # The issue id of the test being called in the step. 22 : String 23 24 # Call Test Parameter Assignments of the Step. 25 : [CallTestParameterAssignment] 26 27 }