Hi all.
I have two projects, with issues linked across projects via issue links.
I have a query that displays Epics in Project A that have linked issues in Project B, using HasLinks.
Is it possible to then display the issues that are linked to that Epic in Project B?
In my mind I see it as a Nested query, but just can't put my finger on it...
Hello STEVE,
You can get the result using JQL Search Extensions.
The JQL will look as following:
issue in links("YourFirstQuery") AND project = "ProjectB"
This JQL will find issues and subtasks in Project B for the resulting epics you got in your first query.
The full documentation can be found here.
Regards,
Ziad
thanks,
I was looking for a native solution, and have worked it out, using three nested filters :-)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Could you share your solution, please? )
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.