Filter Query for related projects in JIRA

aman agarwal September 10, 2013

i require to create a query to where in i need to search all issues reported in 'Project A' which have a link(link type: 'relates to') with a few of the issues reported in 'Project B' (By few issues i mean that i will have a query to filter out a sub set of issues from Project B).

issuetype = Story AND status = Open AND project = "Project A" AND relation type= 'relates to' with ID in (select ID where issuetype = Story AND status = Open AND project = "ProjectB" )

I an mot being able to find a way how to link the two projects. Is this possible?

1 answer

1 accepted

0 votes
Answer accepted
RambanamP
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 10, 2013

you can try with jql functions(linkedIssuesInProject(project,[linkType])) in JQL Tricks Plugin

http://www.j-tricks.com/jql-tricks-plugin.html

or try with jql functions in script runner plugin

https://jamieechlin.atlassian.net/wiki/display/GRV/Scripted+JQL+Functions#ScriptedJQLFunctions-linkedIssuesOf(Subquery,linkname)

Suggest an answer

Log in or Sign up to answer