JQL Query

JQL Query

 

The JQL query editor allows you to define the scope of work displayed in the table using a JQL query.

For detailed guidance on using JQL, see Jira’s JQL documentation.




How to use JQL Query

 

  1. Login to your Jira Cloud site.

  2. Select the project you want to manage with the Flexible Table app, following the instructions in the Getting Started guide.

  3. The table view in Flexible Table will appear.

  4. Click the Edit scope icon at the top right of the table view.

image-20260205-055056.png

 

  1. In the Edit scope screen, configure the range of work items using a JQL query.

image-20251208-070848.png
  1. Click Save to apply your changes.

 

 

JQL query editor

 

  • Expand/Collapse editor: Click Expand editor on the right of the query box to expand the input field. Click Collapse editor to close it again.

image-20251208-071241.png

 

 


 

JQL query examples

 

Here are some examples of how you can extend the default query provided by the app.

 

View unresolved work by assignee (most recent first)

To focus on unresolved work items grouped by assignee and sorted by newest first, you can use:

  1. In the JQL query editor, enter:

project = PCR AND resolution = EMPTY AND assignee IS NOT EMPTY ORDER BY createdDate DESC

(Replace PCR with your actual project key.)

  1. Add the Assignee field in Add system fields.

  2. In Group by, select Assignee.

  3. The table will then display unresolved work grouped by assignee and sorted in descending order by Created date.

image-20251204-072935.png

 


Focus on high-priority unresolved work

 

To prioritize high-importance work that is still unresolved:

  1. In the JQL query editor, enter:

project = PCR AND resolution = EMPTY AND priority IN (Highest, High) ORDER BY priority DESC, createdDate DESC

(Replace PCR with your actual project key.)

  1. Add the Priority field in Add system fields.

  2. In Group by, select Priority.

  3. The table will show unresolved work grouped by priority, with the highest priority and most recently created items at the top.

image-20251204-074751.png