Versions Compared

Key

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

...

Now the Folder with issues has been created

...

...

Examples of JQL queries

We support queries for JQL functions, JQL fields, and JQL keywords.

Note

Only the Issues that have Views will be shown during searching by JQL query

1. Find All Open Issues in a Specific Project

Code Block
project = "YourProjectKey" AND status = "Open"

This query searches for all issues in the project with the key YourProjectKey that are currently in an "Open" status.

...

2. Locate Issues Assigned to a Specific User

Code Block
assignee = "username@example.com" AND project = "YourProjectKey"

Replace username@example.com with the actual user's email or username. This filters issues in YourProjectKey assigned to the specified user.

...

3. Search for High Priority Issues Updated in the Last Week

Code Block
project = "YourProjectKey" AND priority = Highest AND updated >= -1w

This finds issues in YourProjectKey with the highest priority that were updated in the last week.

...

4. Find Issues with Specific Labels

Code Block
project = "YourProjectKey" AND labels IN ("bug_fix", "urgent")

This query returns issues in YourProjectKey that have been labeled either "bug_fix" or "urgent".

...

5. Retrieve Issues from Multiple Projects

Code Block
project IN ("ProjectKey1", "ProjectKey2") AND status = "In Progress"

Searches for issues that are in progress across multiple projects, identified by their project keys.

...

6. Find Issues Created by a Specific User

Code Block
project = "YourProjectKey" AND reporter = "username@example.com"

This filters for issues in YourProjectKey that were reported by the specified user's email or username.

...

7. Locate Issues Containing Text in Summary or Description

Code Block
project = "YourProjectKey" AND text ~ "critical bug"

Searches for issues in YourProjectKey where the summary or description contains the phrase "critical bug".

...

8. Find All Epics

Code Block
project = "YourProjectKey" AND issuetype = Epic

Returns all issues that are of the type Epic within the specified project.

...

9. Issues Without a Specific Component

Code Block
project = "YourProjectKey" AND component IS EMPTY

...