: available in Issue Navigator.

 

linkedIssuesOfSubQuery()

Search for linked issues based on sub-queries.

Examples

issue in linkedIssuesOfSubQuery()

issue in linkedIssuesOfSubQuery("Sub-query")

issue in linkedIssuesOfSubQuery("project = MyProject and type = Bug")

To find issues linked to Bugs in the MyProject project.

 

linkedIssuesOfSubQueryWithLinkType()

Search for linked issues based on sub-queries and link type.

Examples

issue in linkedIssuesOfSubQueryWithLinkType()

issue in linkedIssuesOfSubQueryWithLinkType("Sub-query", "link-type")

issue in linkedIssuesOfSubQueryWithLinkType("project = MyProject and type = Bug", "blocks")

To find issues linked to Bugs that block in the MyProject project.

 

issueLinkCountEquals()

Search for issues based on the number of linked issues.

Examples

issue in issueLinkCountEquals("query", "count")

issue in issueLinkCountEquals("project = DDP", "5")

finds the issues that have five linked issues.

 

issueLinkCountMoreThan()

Search for issues based on the number of linked issues.

Examples

issue in issueLinkCountMoreThan("query", "count")

issue in issueLinkCountMoreThan("project = DDP", "2")

finds the issues that have more than two linked issues.

 

issueLinkCountLessThan()

Search for issues based on the number of linked issues.

Examples

issue in issueLinkCountLessThan("query", "count")

issue in issueLinkCountLessThan("project = DDP", "9")

finds the issues that have less than nine linked issues.