Versions Compared

Key

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

...

Info

JQL functions are accessible from the Extended Search page or Extended Search filters in Jira advanced search.

ParentsOfSubtasksInQuery

For a given JQL subquery, it finds parents of the resulting subtasks.

Examples:

issue in parentsOfSubtasksInQuery("status='To Do'") and status='Done' finds finished issues that have unfinished subtasks
issue in parentsOfSubtasksInQuery("assignee=currentUser()") finds parents of my subtasks

SubtasksOfParentsInQuery

For a given JQL subquery, it finds subtasks of resulting parent issues.

...

Code Block
parentSummary ~ "Test"  

 

ParentPriority

Search for subtasks with a parent that has particular priority.

...

Code Block
parentPriority = Blocker

 

ParentIssueType

Search for subtasks with a parent of a particular issue type.

...

Code Block
parentIssueType = "Test"

 

ParentStatus

Search for subtasks with a parent of a particular status.

...

Code Block
parentStatus = "In Progress"

...

ParentStatusCategory

Search for subtasks with a parent of a particular status.

...