You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I'm in search of a possibility to filter out issues with a subtask. Those subtasks should by in status analysed.
I was thinking about: issueFunction in hasSubtasks() AND status = analysed
But when I use that JQL, it will look for Story issues in analysed with subtasks. But I need Story issues with subtasks which are in analysed.
Is it possible to achieve that?
Hi @ray
It should return Stories with sub-tasks in Analysed statuses.
Also take a look at JQL Functions page.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi all,
now I'm looking for a reversed filter:
My subtasks are in analysed and the parents of the subtasks are f.e. in 'on hold'.
I could use this JQL:
But I'm trying to use it in structure formula's to be applied to sub-tasks. So when I try the above JQL, It would return nothing since it refers to a story and my formula needs to be applied to a sub-task.I think it could be solved if I have an reversed version of issueFunction in parentsOf(): that one starts from a story and looks for its subtask in a specific status but I'm looking for a function that starts from the subtask and is looking for its parent in a specific status...
It's very difficult to explain, so I hope someone understands my problem and help me :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
doh, I think I just found it myself: issueFunction in subtasksOf("status = 'on hold'")
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.