The query I am trying to write is
project in (xxxx, xxxx) AND issuetype in (Story, Task) AND status in ("In Progress", "To Do", Backlog, "Internal Review", "External Beta Review", "External Sign Off") AND priority = Blocker AND issueLinkType = "is blocked by"
This shows all Issues that have a priority of Blocker what I need to show is only issues that have the priority of Blocker and are blocked by a certain issue which has key xxxx-581. Is there any way to achieve this or am i asking to much.
Hi @David Battersby and welcome! I think what you're looking for is:
priority = Blocker AND issueFunction in linkedIssuesOf("key = xxxx-581", "blocks")
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.