issueFunction in hasLinks(blocks) show "blocks" and "is blocked by" issues

inux September 9, 2015

Hi,

I need to select issues that with "blocks" link 

my query: issueFunction in hasLinks(blocks) AND resolution = Unresolved AND project = "P1 Integracja"

 

And this query return issues with "blocks" AND "is blocked by" links.

Some issues have ONLY "is blocked by" links and they are on the list.

 

Please help smile

2 answers

2 votes
Vasiliy Zverev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 23, 2016

For link we have

  1. Link name
  2. Outward link name (lets assume that "blocks" in your case)
  3. Inward link name (lets assume that  "is blocked by" in yopur case )

If you need to get both outward and inward links you should use "issueFunction in hasLinkType(Link name)".

If you need to get outward or inward links separately you shouls use ssueFunction in hasLinks(blocks).

You can also get both link like "(issueFunction in hasLinkType(blocks) or issueFunction in hasLinkType(is blocked by) )"

0 votes
Quang P July 18, 2017

The hasLInks() does not exist anymore. The only thing available now is hasLinkType() unless I'm missing something.

Suggest an answer

Log in or Sign up to answer