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