JQL to check if issue contains subissues with a certain status

Tim Franken March 13, 2013

NOTE: We have JIRA On Demand so we can't install plugins.

I'd like to give issues a certain cardcolor using the query option. Our issues that are On hold get a red color.

Now I'd like to give issues a certain color, which have subissues in with a certain status. Unfortunately, this does not seem possible with the current JQL options.

I tried for instance: issuetype in standardIssueTypes(issuetype in subTaskIssueTypes() and status="Dev testing") but this does not work.

Any ideas or is this not possible in On Demand?

1 answer

0 votes
JamieA
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 13, 2013

It's not possible without plugins...

With plugins it's easy, eg

issueFunction in parentsOf('project = JRA and status = "Dev testing"')

https://jamieechlin.atlassian.net/wiki/display/GRV/Scripted+JQL+Functions#ScriptedJQLFunctions-parentsOf(Subquery)

Suggest an answer

Log in or Sign up to answer