Skip to end of metadata
Go to start of metadata
You are viewing an old version of this page. View the current version.
Compare with Current
View Page History
« Previous
Version 2
Next »
The starting set of issues used for the diagram is selected using a JQL query. JQL is a simple yet powerful query syntax defined by JIRA for selecting issues. For all details on JQL, please refer to JIRA's documentation on Advanced searching. The following table shows examples of frequently used JQL queries and their meaning: JQL | Meaning |
---|
Project = ABC | All issues of project ABC | Project in (ABC, DEF) | All issues of projects ABC and DEF | Project = ABC and sprint = 'Sprint 9' | All issues of Sprint 9 of project ABC | Project = ABC and fixversion = '3.1' | All issues of version 3.1 of project ABC | Project = ABC and status != done | All issues of project ABC that are not done | Project = ABC and assignee != jsmith | All issues of project ABC that are not assigned to user jsmith | Project = ABC and duedate < now() | All overdue issues of project ABC |
|