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 rather new to JQL, but do have experience with other query languages.
I would like to write a query that returns all issues that are blocked or is blocking other issues, but there the other issue is assigned to another team.
First, I was trying out the following, which gives me issues that are blocking or blocked by other issues, but it appears there is no way to filter out those that are assigned to the same team.
issueFunction in hasLinkType(Blocks)
I the stumbled upon linkedIssuesOf, which appears to be able to run a sub query on linked issues, but I would also need to pass the assigned team of the current issue to compare it to the linked issue's team. Is that possible somehow?
The sub query only appears to accept a string/content in double quote, so I'm not sure how I would pass in a value from the current issue.
issueFunction in linkedIssuesOf("SUBQUERY", Blocks)
linkedIssuesOf returns issues, but I would only need to know if there are any fulfilling the condition. sort of like count > 0.
Can anyone help with this?