OBJECT

ManualStepLibraryStep

Manual Step Library Step type

link GraphQL Schema definition

1type ManualStepLibraryStep {
2
3# Id of the step.
4id: String
5
6# Project id the step belongs to.
7projectId: 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# Description of the step.
19description: String
20
21# Labels of the step.
22labels: [String]
23
24# Custom Fields of the step.
25customFields: [CustomStepField]
26
27# Test issues that use this step.
28associatedTests: [String]
29
30# Date when the step was last modified.
31dateModified: String
32
33}