Please help with JQL query

e October 7, 2014

I want to see all the issues that are linked to an epic that has fixVersion of  ABC_123.

Please show me sample JQL query for that.

Thanks. 

3 answers

1 vote
Udo Brand
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.
October 7, 2014

since you have scriptrunner installed you can use

issuefunction in linkedissuesof("issuetype = epic and fixversion =ABC_123")
e October 7, 2014

Function 'linkedissuesof' expected '2' arguments but received '1'.

Udo Brand
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.
October 7, 2014

the second one should be optional linkedIssuesOf(Subquery, [link name]) see :https://jamieechlin.atlassian.net/wiki/display/GRV/Scripted+JQL+Functions#ScriptedJQLFunctions-linkedIssuesOf(Subquery,[linkname])

JamieA
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.
October 7, 2014

The second one is optional as of some version... either update your SR, or you need to specify the link name.

JamieA
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.
October 7, 2014

"is Epic of" or "has Epic" for the second argument, can't remember which.

0 votes
Louise Dennis October 7, 2014

Would this suffice?

fixVersion = ABC_123 and "Epic Link" is not EMPTY

0 votes
Deleted user October 7, 2014

try it

project = CICCETTO AND "Epic Link" = (epicdoyouwant) AND "fixVersion" = 1.2.3 ORDER BY description

Suggest an answer

Log in or Sign up to answer