Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Section


Column
width10%



Column
width20%


Div
alignleft



Column
width5%




Column
width70%


Div
alignright



 
 



Column
width10%



...

Panel
bgColor#fcfcfc

LinksCountLessThan

LinksCountLessThan can be used to find issues with number of links less than provided number.

Code Block
themeMidnight
linksCountLessThan(2)


LinksCountGreaterThan

LinksCountGreaterThan can be used to find issues with number of links greater than provided number.

Code Block
themeMidnight
linksCountGreaterThan(2)


LinksCountEqualTo

LinksCountEqualTo can be used to find issues with number of links equal to the provided number.

Code Block
themeMidnight
linksCountEqualTo(2)


LinkedBy([linktype], jql-query or issuekeys)

Search for issues that are linked by given issues or by issues matched by the given JQL. Link type can be provided to limit the search to particular link type or types. Many link types can be specified in a single function call.

The first optional list of arguments specifies link types. They are followed by either JQL or a list of issue keys.

EXAMPLES

Find issues which are linked by JQL-3 or JQL-5. 

Code Block
themeMidnight
issue in linkedBy(JQL-3, JQL-5)


Find issues which are linked by issues from project JQL with priority = Highest. 

Code Block
themeMidnight
issue in linkedBy("project = JQL AND priority = Highest")


Find issues which are blocked by issue JQL-3 or JQL-5. 

Code Block
themeMidnight
issue in linkedBy("is blocked by", "JQL-3", JQL-5)


Find issues which are blocked by issues from project JQL with priority = Highest. 

Code Block
themeMidnight
issue in linkedBy("is blocked by", "is related to", "project = JQL AND priority = Highest")


Links(jql-query, link type)

Search for issues which links issues matched by JQL. Link type can be provided to limit the search to particular link type or types. Many link types can be specified in single function call.

EXAMPLES

Find issues which link at least one issue from project JQL. 

Code Block
themeMidnight
issue in links("project = JQL")


EXAMPLES

Find issues which "blocks" at least one issue from project JQL. 

Code Block
themeMidnight
issue in links("blocks", "project = JQL")


LinksIssue

Search for issues which links a particular issue. 

EXAMPLES

Find issues which link JQL-3 or JQL-5

Code Block
themeMidnight
issue in linksIssue(JQL-3, JQL-5)


LinkType

Search for issues which have a particular link type. 

EXAMPLES

Find all issues which are blocked by another issue

Code Block
themeMidnight
issue in linkType("is blocked by")


LinkedIssueStatus

Search for issues which are linked or link issues with a particular status. 

EXAMPLES

Find all issues which are linked by issues in "To Do" status. 

Code Block
themeMidnight
issue in linkedIssueStatus("To Do")


LinkedIssueStatusCategory

Search for issues which are linked or link issues with a particular status category. 

EXAMPLES

Find all issues which are linked or link issues in status category "Done"

Code Block
themeMidnight
issue in linkedIssueStatusCategory("Done")


LinkedIssueType

Search for issues which are linked or link issue with a particular issue type. 

EXAMPLES

Find all issues which are linked by Bugs. 

Code Block
themeMidnight
issue in linkedIssueType("Bug")


LinkedIssuePriority

Search for issues which are linked or links issues with a particular priority. 

EXAMPLES

Find all issues which are linked by "blockers"

Code Block
themeMidnight
issue in linkedIssuePriority("Blocker")


LinkedByIssueProject

Search for issues which are linked or links issues from a particular project. 

EXAMPLES

Find all issues which are linked or links project JQL

Code Block
linenumbersthemetrueMidnight
issue in linkedByIssueProject("JQL")


...

Panel
bgColor#fcfcfc

AllIssuesInEpic(jql-query or issuekey)

Search for all epics, issues in epics and subtasks of these issues. 

SUPPORTED OPERATORS 

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)

EXAMPLES

Find issues and subtasks of epic "SEARCH-12"

Code Block
themeMidnight
issue in allIssuesInEpic(SEARCH-12)

Find issues and subtasks of epics "SEARCH-12, SEARCH-13"

Code Block
themeMidnight
issue in allIssuesInEpic(SEARCH-12, SEARCH-13)

Find issues and subtasks of epics and issues for fixVersion = 1.0 in project SEARCH 

Code Block
themeMidnight
issue in allIssuesInEpic("fixVersion = 1.0 AND project = SEARCH")


EpicOf(jql-query)

Find all epics which have issues matching JQL query. 

SUPPORTED OPERATORS 

=

!=

~

!~

>

>=

<

<=

IS

IS NOT

IN

NOT IN

WAS

WAS IN

WAS NOT

WAS NOT IN

CHANGED

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(error)

(tick)

(tick)

(error)

(error)

(error)

(error)

(error)

EXAMPLES

Find all epics with unresolved, high-priority stories 

Code Block
themeMidnight
issue in epicOf("issuetype = Story and resolution is empty and priority = High")

Find all epics for the fixVersion 1.0 in project SEARCH

Code Block
themeMidnight
issue in epicOf("fixVersion = 1.0 and project = SEARCH")


...