OBJECT

getBDDStepLibrary

link GraphQL Schema definition

1Query getBDDStepLibrary {
2
3# Get BDD Step Library steps with optional text search.
4# Either projectId or testIssueId must be provided.
5#
6# Example:
7# {
8#
9# getBDDStepLibrary(projectId: "10000", search: "login", limit: 10) {
10#
11# total
12#
13# start
14#
15# limit
16#
17# results {
18#
19# id
20#
21# definition
22#
23# labels
24#
25# lastModified
26#
27# associatedTests
28#
29# library { id name isGlobal }
30#
31# }
32#
33# }
34# }
35#
36# Arguments
37# projectId: The project id. Either this or testIssueId must be provided.
38# search: Search text to match against step definition.
39# testIssueId: Filter steps linked to a specific test issue. Either this or projectId must be provided.
40# limit: The maximum amount of steps to be returned. The maximum is 100.
41# start: The index of the first item to return in the page of results (page offset).
42getBDDStepLibrary(projectId: String, search: String, testIssueId: String, limit: Int!, start: Int): BDDStepLibraryResults
43
44}