I'm trying to figure out how to write the JQL to set the card color if the Issue has a subtask that is a certain type ("Fault" in this case). Here are some that I tried out and neither seem to work.
linkedIssue in(issueType = Fault AND status != Done)
subtasks in(issueType = Fault AND status != Done)
Anyone get any success with something like this?
That looks like it would help but that is a paid app. I was hoping to find a solution using the built in functionality of Jira Cloud.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
As much as I know there's no way to do this without a plugin. Your question needs a subquery inside the parentheses, but built in functions don't support it:
https://support.atlassian.com/jira-software-cloud/docs/advanced-search-reference-jql-functions/
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.
Hi @Stephen Herrick ,
It's not a native solution but you can try our app JQL Search Extensions. It supports subqueries for links, subtasks and epics.
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.