Hello, please I want to query only the subtasks and do not count the subtasks inside the bugs. How could I make without a plugin?
project in (ABC) AND Sprint in openSprints() AND (type = sub-task OR type = bug)
Hi @Sergio Caballero welcome to the Atlassian Community!
Unfortunately, you cannot achieve this without a third-party app.
The JQL would be something like:
project in (ABC) AND Sprint in openSprints() AND issue in subtaskOf("type != Bug")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.