Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×more detail ;
I have 2 projects (P1 and P2)
I create a story (S2) in P2 with a link to story (S1) in P1
I want a filter to catch any modification apply to S1 base on Project 2.
ex :
In project P2
For all story with link item
if linked item is modify in the last 1 week
---> add to filter result
Is possible ? I dont see how to create relation between projects.
Thanks for your help !
Patrick Poulin
Hi Patrick,
You JQL linkedIssues function. Something like
issue in linkedIssues(ABC-123,"relates to") AND updated > -7d
Should gives you all issues related to ABC-123 and updated in the last 7 days.
Documentation at https://confluence.atlassian.com/jiracoreserver072/advanced-searching-functions-reference-829092674.html#Advancedsearching-functionsreference-linkedIssueslinkedIssues()
Hope that helps.
Regards
Bhushan
OK it's a good start but I need a litle bit more complexe filter.
is possible to use a regex as issue name
ex :
project = ABC AND issue in linkedIssues("*","relates to") AND updated > -7d
Because my needs is to get all linkedissues status, not only for a specific issue parent. But for all parent on a specific project.
Thanks for your help,
Patrick Poulin
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Did you solve that?
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.