All links within the set of projects

Artur Franczuk October 30, 2020

hello!

 

is there any way to list all issues with all possible links within projects A, B, C, D?

Another requirement is to excluded inner links, like within project B issues. 

 

Thanks in advance. 

Artur

1 answer

0 votes
Brant Schroeder
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
October 30, 2020

You can do something like the JQL below.  You will need to make sure you include all of he possible issue link types.

project in (A, B, C) AND issueLinkType in (blocks, causes)

To exclude you can do issueLinkType != or not in

Artur Franczuk October 31, 2020

Hi Brant, thanks for reply, however it lists also inner issue types like A-123 is blocked by A-555, which I would like to exclude. In other words, I would like to have all issue links between those projects. 

Brant Schroeder
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
October 31, 2020

What you are trying to do requires and app like JQL Search Exensions

For example:

linkedByIssueProject="Project A"
Artur Franczuk November 1, 2020

Ok, I found the following approach and it seems it works:

 

project in (B, C, D) and (issuefunction in linkedIssuesof("project = A")) OR 

project in (A, C, D) and (issuefunction in linkedIssuesof("project = B")) OR 

project in (A, B, D) and (issuefunction in linkedIssuesof("project = C")) OR 

project in (A, B, C) and (issuefunction in linkedIssuesof("project = D"))

Suggest an answer

Log in or Sign up to answer