We have project A.
For some issues there need to be development in other projects.
For this we have a status and automatically creates statuses on the other projects (Project B).
Now I want to create a extra board on Project A which shows issues from Project B which have a linked issue on Project A.
I tried this:
project = "*Project B" AND issueLinkType IS NOT EMPTY AND issue IN linkedIssues("(project = Project A)") ORDER BY created DESC
But get a error back: Issue '(project = Project A)' could not be found in function 'linkedIssues'.
All help would be welcome!
Hello @Max ,
I belive a possible workaround would be to create a new issue link type specifically for this scenario. That way, you could filter the issues by project and link type using a JQL. Foe example:
projet=A AND issueLinkType="newLinkTypeCreated"
Hi Max,
issue IN linkedIssues("") only works with single issues.
You can specify the link type with this as well
Unfortunately I don't think what you want is available out-of-the box. If you have Scriptrunner installed you can use the "issuefunction in LinkedIssuesOf()" function which does accept another JQL as an argument:
project = "Project A" and issuefunction in linkedIssuesOf("project = Project B")
But again, this requires Scriptrunner to work.
Hope this helps,
Els
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.