JQL Folder Integration

JQL (Jira Query Language) for Folder in the Global Issue Statistics page allows you to perform advanced searches to find exactly the issues you need and add them to your folders for better organization.

To create a custom folder with issues on the Global Issue Statistics page with JQL:

  1. Open the Global Issue Statistics page

  2. Click the ‘Add Folder’ button

  3. Select the folder avatar

  4. Enter the Folder Name

  5. Click on the JQL in the ‘Folder issues’ section

  6. Enter your JQL query

    image-20240321-094705.png

Only issues that have Viewі will be added to the JQL query

  1. Click the ‘Search’ button

  2. Click the ‘Create’ button

Now the Folder with issues has been created

chrome_tbjmqLl6Dw.mp4

 


Examples of JQL queries

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

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

1. Find All Open Issues in a Specific Project

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

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

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

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

5. Retrieve Issues from Multiple Projects

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

6. Find Issues Created by a Specific User

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

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

8. Find All Epics

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

9. Issues Without a Specific Component

Finds all issues in YourProjectKey that have not been assigned to any component.

 

Read more about this JQL query: https://support.atlassian.com/jira-service-management-cloud/docs/jql-functions/