How to find test cases which are not linked to any Stories/Task/Sub-tasks?

Smit Belani May 7, 2021

I'm trying to Query with

project=<ProjectName> AND issuetype=test AND key not in linkedIssues("Test-1",Test-2")

 

But it is showing me

Issue link type 'Test-2' could not be found in function 'linkedIssues'

 

1 answer

1 accepted

1 vote
Answer accepted
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
May 7, 2021

Linkedissues answers "what is linked to this issue"? (With the option of specifying the type of link).  It does not "List everything linked to this list of issues"

You will need to use

and key not in linkedissues("test-1") and key not in linkedissues("test-2")

Smit Belani May 7, 2021

That worked. Thank you @Nic Brough -Adaptavist- 

Suggest an answer

Log in or Sign up to answer