Hello,
Currently I am trying to get a quick filter where it will look to the summary of the story and check if there is "LCM" in it. This works, but it only shows the story and not the subtasks of that story. Whats the best way of adding these subtasks to make them also visible in that quick filter.
I've read that I can also use labels, but I was hoping there was the possibility to say in JQL to add the underlying subtasks with it as well.
For this, you'd need to write a query like this:
summary ~ "LCM" or (parent.summary ~ "LCM")
The first part would match the story while the second part would match the sub-tasks.
The problem is that you can't check the parents' properties in JQL using the built-in features. For that, you will need a third party app. There are several, just check out Atlassian Marketplace!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.