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-
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
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