OBJECT

Step

Test Step type

link GraphQL Schema definition

1type Step {
2
3# Id of the Step.
4id: String
5
6# Id of the Lib Step Library
7libStepId: String
8
9# Action of the Step.
10action: String
11
12# Data of the Step.
13data: String
14
15# Result of the Step.
16result: String
17
18# Attachments of the Step.
19attachments: [Attachment]
20
21# Custom Fields of the Step.
22customFields: [CustomStepField]
23
24# The issue id of the test being called in the step.
25callTestIssueId: String
26
27# Call Test Parameter Assignments of the Step.
28callTestParameterAssignments: [CallTestParameterAssignment]
29
30}