list of items that are related to an item that has changed in the last week

Patrick Poulin December 6, 2017

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 

 

 

 

 

 

 

 

 

1 answer

0 votes
Bhushan Nagaraj
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
December 6, 2017

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

Patrick Poulin December 7, 2017

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 

Nadav Yeheskel October 4, 2022

Did you solve that?

Suggest an answer

Log in or Sign up to answer