Hello
I have a JQL filter that shows all stories with a parent link xxxx and ZZZZ
But these story also have Subtasks how can I get them to show up in the filter too.
or is this not possible without ADDON
Grtz. Eric
Hi @Eric Roetenberg ,
issuetype = Story AND "Parent Link" in (xxxx, ZZZZ)
To include the subtasks of these stories in the same filter, you need to use the parent field in JQL. Unfortunately, JQL does not support subqueries directly, so you must manually combine the conditions for the stories and their subtasks.
Without Addons: Manually combine the queries by running the story query first and then including their subtasks.
With Addons (like ScriptRunner): Use advanced JQL functions provided by the addon to combine the queries dynamically.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.