Hello, hope everyone doing well.
I am trying to list all the dependencies against some particular epics.
The below JQL is working fine with 1 Epic:
project = XYZ AND issuetype = Dependency AND component = "ABC" AND status!= Rejected AND "Dep Give/Get[Dropdown]" = Get AND issue in linkedIssues ("Epic-1")
Please can someone help me expand that to include multiple epics and not just one.
I am fine with a new JQL all together as long as it serves my purpose :) Thanks!
Hello @Troy
You should be able to do something like the following:
issueFunction in linkedIssuesOf("issuekey in (XYZ-1, XYZ-2, XYZ-3), "addresses")
That query will return all issues that have a "is addressed by" link type with the Epics listed in the first sub-query. If you change the link type to the dependency link type you are searching for, you should be all set!
Here is documentation for this jql function: https://docs.adaptavist.com/sr4js/latest/features/jql-functions/included-jql-functions/issue-links
Thanks for your response @Ditte Simard
I tried using the below query from the documentation link you provided for a basic test and got an error, don't suppose I will be able to use the query you gave.
issueFunction in epicsOf("resolution = unresolved")
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.