Versions Compared

Key

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

...

It provides powerful flexibility, allowing you to tailor your analysis to any specific requirement or scenario, ensuring that the data you work with is as relevant and targeted as possible.

Expand
titleJQL which can help you to define the scope
  • Track all tasks currently assigned to a specific team member.
    assignee = "username"

  • Get a list of all issues that haven't been completed or resolved.
    resolution = Unresolved

  • Focus on all tasks under a particular Epic to track progress.
    "Epic Link" = "EPIC-123"

  • Filter for high-priority tasks that need immediate attention.
    priority = "High"

  • See all tasks that are currently being worked on.
    status = "In Progress"

  • Identify issues that are blocking other tasks, which may require immediate resolution.
    issueFunction in hasLinkType("blocks")