Versions Compared

Key

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

...

Panel
bgColor#fcfcfc

issuesInQuery

Matches issues returned by the base query itself. It can be used as a more powerful Jira filter.

For example you can create two subqueries with aliases:

AliasQuery
Team 8 this weeklabels in (Team8, Marketing) and createdDate > -7d
Abc Highproject=ABC and priority=High

And then you can conveniently refer to the queries with their aliases in more complex queries:

Code Block
themeMidnight
titleExample
issuesInQuery="Team 8 this week" and issuesInQuery="Abc High" and status!=Done

linkedByQuery

Matches issues linked by the issues returned by the subquery.

Code Block
themeMidnight
titleExample
linkedByQuery = "labels in (Team8, Marketing) and createdDate > -7d"

linksQuery

Matches issues that link to the issues returned by the subquery.

Code Block
themeMidnight
titleExample
linksQuery = "labels in (Team8, Marketing) and createdDate > -7d"

parentOfQuery

Matches parents of subtasks returned by the subquery.

Code Block
themeMidnight
titleExample
parentOfQuery = "labels in (Team8, Marketing) and createdDate > -7d"

subTaskOfQuery

Matches subtasks of issues returned by the subquery.

Code Block
themeMidnight
titleExample
subTaskOfQuery = "labels in (Team8, Marketing) and createdDate > -7d"

epicOfQuery

Matches epics of issues returned by the subquery.

Code Block
themeMidnight
titleExample
epicOfQuery = "labels in (Team8, Marketing) and createdDate > -7d"

issuesFromEpicsInQuery

Matches issues of the epics returned by the subquery.

Code Block
themeMidnight
titleExample
issuesFromEpicsInQuery = "labels in (Team8, Marketing) and createdDate > -7d"


...