OBJECT

BDDStepLibraryStep

BDD Step Library Step type

link GraphQL Schema definition

1type BDDStepLibraryStep {
2
3# Id of the step.
4id: String
5
6# Step definition text.
7definition: String
8
9# Description of the step.
10description: String
11
12# Library this step belongs to.
13library: BDDLibraryInfo
14
15# Labels of the step.
16labels: [String]
17
18# Date when the step was last modified.
19lastModified: String
20
21# Test issues that use this step.
22associatedTests: [String]
23
24}