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

SubTaskOf(jql-query)

Search for subtasks of issues matching JQL. 

EXAMPLES
Find subtasks of parents with priority = Blocker. 

Code Block
themeMidnight
issue in subtaskOf("priority = Blocker")


ParentOf(jql-query)

Search for parents of issues matching JQL. 

EXAMPLES

Find parents of subtasks with issue type = Bug. 

Code Block
themeMidnight
issue in parentOf("issueType = Bug")


SubtaskCountLessThan

SubtaskCountGreaterThan can be used to find issues with number of subtasks lesser than provided number.

Code Block
themeMidnight
issue in subtaskCountLessThan(2)


SubtaskCountGreaterThan

SubtaskCountGreaterThan can be used to find issues with number of subtasks greater than provided number.

Code Block
themeMidnight
issue in subtaskCountGreaterThan(2)


SubtaskCountEqualTo

SubtaskCountEqualTo can be used to find issues with a particular number of subtasks.

Code Block
themeMidnight
issue in subtaskCountEqualTo(2)


SubTaskKey

Search for issues that have subtasks with a particular key. 

EXAMPLES 

Find issues with subtask with key ABC-123

Code Block
themeMidnight
issue in subtaskKey("ABC-123")


SubtaskPriority

Search for issues that have subtasks with a particular Priority.

EXAMPLES 

Find issues with subtasks which have a "Blocker" priority. 

Code Block
themeMidnight
issue in subTaskPriority("Blocker")


SubTaskType

Search for issues that have subtasks with a particular Issue Type.

EXAMPLES 

Find issues which have "Test" issue type. 

Code Block
themeMidnight
issue in subTaskType("Test")


SubTaskStatus

Search for issues that have subtasks with a particular Status.

EXAMPLES 

Find issues which have subtasks "In Progress". 

Code Block
themeMidnight
issue in subTaskStatus("In Progress")


SubTaskStatusCategory

Search for issues that have subtasks with a particular Status Category.

EXAMPLES 

Find issues which have "To Do" status category.

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


...

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")


...