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
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
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What you are trying to do requires and app like JQL Search Exensions
For example:
linkedByIssueProject="Project A"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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"))
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.