I am trying to find a JQL that will display all my issues that are related to issues with a type = 'test'
For example if HEY-100 is related to HO-12 with type=test then the query would return HEY-100
Standard JQL doesn't easily allow it but the results can be quickly found using JQL Search Extensions. It's a professional paid indexing service provided by a company I've partnered with.
You can use the following query to get the list of issues with link "related to" and type = test in reference
issue in links(
"related to"
,
"type = Test"
)
Thanks,
Mohamed Adel
Hello @Test Jenkins Jira
Welcome to the community.
That sort of complex filtering is not natively available in JIRA. You are going to need to investigate a Marketplace app that can extend the filtering functionality. Is that an option for you? Or do you already have any such apps available on your Jira instance?
https://marketplace.atlassian.com/search?query=jql%20extension
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.