OBJECT

ExpandedStep

Expanded test step type

link GraphQL Schema definition

1type ExpandedStep {
2
3# Id of the Step.
4id: String
5
6# Action of the Step.
7action: String
8
9# Data of the Step.
10data: String
11
12# Result of the Step.
13result: String
14
15# Attachments of the Step.
16attachments: [Attachment]
17
18# Custom Fields of the Step.
19customFields: [CustomStepField]
20
21# The issue id of the called test with the step
22calledTestIssueId: String
23
24# The issue id of the test calling the step
25parentTestIssueId: String
26
27}