Hi community,
In my JIRA I have a issue type called requirement,
and another one called Epic.
I want to create a filter that would retrieve a list of requirements (e.g. issuetype = REQ), but which holds a link called "Is requirement Of", and the destination issue is of type Epic, and the Epic has "Timespent>0"
That seems like a good use case for the linkedIssuesOf jql function.
Try something like
issueType=REQ and issueFunction in linkedIssuesOf("issueType=Epic and timespend>0", "has requirement")
Note that you want the reverse of your "is requirement of" link in the second parameter of the function.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.