Hi,
I'm trying to create a filter to get the defects that are linked to stories/EPIC. Can you guys help me in providing me a query for getting the defects that are linked to my US.
BDW we're using Jira v7.13.11 and I don't have "IssueFunction" parameter.
Thanks
Ramesh
If your goal is to find all issues that has one or more links to other issues then you can use the IssueLinkType JQL function. That is you can incorporate the following into the rest of your JQL...
issuelinktype is not empty
now you will want to add in the Epic part to if you want to find issues that are associated w/ Epics...
issuelinktype is not empty OR "epic link" is not empty
so you might end up w/ a query something like this...
project = myproject and issuetype = bug and (issuelinktype is not empty OR "epic link" is not empty)
@Jack Brickey - Thanks for the answer. I was able to retrieve all the defects linked to my stories / Epics with your query.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Jack Tried using is not empty in my query. However i am getting this below error
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Ramesh Babu
I'd go with something along the lines of the following:
A hypothetical scenario would be:
Resulting filter: project = TEST AND epiclink = TEST-1 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.
@Fernando Bordallo - Thanks for the answer. I was able to retrieve all the defects linked to my stories / Epics with your query.
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.