Hi,
I have a project with 4 issue types (Epic, Sesnor, Battery and Charger) and 2 status (Available and Maintenance). Each Epic contains the other 3 issue types (ex: the Epic xxx contains one Sensor, one Battery and one Charger). I would like to create a filter to display the Epics when the following conditions are true:
Is it possible?
I’m Charlotte, a support engineer at Appfire and I’m here to help you.
Unfortunately, using vanilla JQL, you’ll not be able to do it dynamically.
In the app where my team works, JQL Search Extensions for Jira, you can use this query to find the Epics with the conditions you want:
issue in epicsOfChildrenInQuery("type = Sensor AND status = Maintenance") AND status = Maintenance AND issue in epicsOfChildrenInQuery("status = Available AND issuetype in (Battery, Charger)") AND status = "Maintenance"
Please contact our support if you have any other questions about this query.
We’ll be happy to help you!
Best regards,
Charlotte
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Henrique Olmo Salles and welcome to the Atlassian Community!
You might want to add a filter for your Project to them ( like: project = yourprojecthere)but other than that these queries all look good to me! Have you tried going to "All Issues" or creating a new filter and trying it out?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @David Blank . Thanks for the welcoming.
I tryied this filter but got no results... I'm attaching some prints of the resolts and one exemple of the epic.
project = INV AND (issuetype = Epic AND status = Maintenance) AND (issuetype = Sensor AND status = Maintenance) AND (issuetype in (Battery, Charger) AND status = Available)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I apologize for my misunderstanding! I was thinking you were using 3 separate queries. Unfortunately to combine the 3 queries I think you need an extension from the app store.
I've seen this one mentioned: JQL Search Extensions for Jira & reports
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.
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.