Using Custom JQL script I would like to return Issues Linked to an Epic Only from a certain Project and Issue Type
The following gets me the Issues Linked to the Epic
issueFunction in linkedIssuesOf(
"issue = currentIssue()"
,
"is Epic of"
)
I am not sure how to continue to limit that to only issues from Certain Project and Type
Hi Jaimie thank you for the response can you clarify for me how I can further limit the results to a certain Issue Type
"and issuetype = Bug"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm not sure what that currentIssue() is... and I'm not 100% sure what you need but you can definitely limit it either by adding your additional clauses to the filter parameter, eg:
issueFunction in linkedIssuesOf(
"PROJECT = FOO"
,
"is Epic of"
)
or
issueFunction in linkedIssuesOf(
"..."
,
"is Epic of"
) and PROJECT = FOO
Update: sorry, when I say "either", I'm not saying their equivalent. The first will get issues links to issues in FOO, the second will get the linked issues which are in FOO.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.