Example Smart Issue Panel
Smart Issue Links
Get all issues linked with the current issue.
JQL query:
issue in linkedIssues(value("Key_[issuekey]")) ORDER BY Rank
Smart Sub-tasks
Get all sub-tasks of the current issue.
JQL query:
parent = value("Key_[issuekey]") ORDER BY Rank
Smart Issues In Epic
Get all issues in the current Epic (if viewing an Epic).
JQL query:
"Epic Link" = value("Key_[issuekey]") ORDER BY Rank
Currently Working On
List all unresolved issues of the current project that are assigned to the current user.
JQL query:
assignee = currentUser() AND project = value("Project_[project]") AND resolution = Unresolved
All Unresolved Issues
List all unresolved issues in the current project.
JQL query:
project = value("Project_[project]") AND resolution = Unresolved