If I use the JQL issueLinkType = blocks
I am shown a llst of all JIRAs which block any other Jira.
What I am trying to do is show all Jiras which block a specific Jira, something like
issueLinkType = blocks
J-1234
returning all JIRAs which as blocking J-1234
Is this possible in JQL?
Cheers
Ok so here is the request that show you all issues that block a specific issue (in the example, it is the issue PROJ-1).
issueBlocks = PROJ-1
will this work for you?
issueLinkType = "blocks" and issueLink = J-1234
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.