Tempo logotype

Jira search: How to find issues quickly using JQL

Improve Jira search efficiency and accuracy by using JQL to create custom queries. Then, save and distribute them for repeated use.

JQL (Jira Query Language) is Atlassian's native query syntax for finding issues in Jira by combining fields, operators, and values into precise search strings. Instead of scrolling through a Jira dashboard for hours, you write one query and get exactly the issues you need.

This guide covers how Jira search works, how to build a JQL query, and the syntax you need to save and share filters across your team.

Getting started with search in Jira

Jira ships with two search modes: basic and advanced. Basic search is the friendlier of the two and lives in the search bar at the top right of the Jira dashboard. Use it to look up:

  • A specific issue: Locate issues by their key, like JobKey-11.

  • Text: Find issues based on keywords in the summary, description, and comments.

  • Smart Query: Type "my open bugs" and Jira returns bugs assigned to you.

The search bar's drop-down menu also lets you filter by:

  • Issues

  • Boards

  • Projects

  • Filters

  • Plans

  • Assignees

That covers Jira's basic search. It works for quick lookups, but the moment you need multiple conditions, you'll want the advanced side.

Advanced searches in Jira

Advanced search runs on Jira Query Language (JQL). JQL lets you assemble criteria that basic search can't touch: date ranges, custom fields, negations, functions, and combinations of all of them.

How to create a JQL query

To open the advanced search:

1. Open the Jira project related to the search. 1. Select "Issues" from the navigation sidebar. 1. Click "Advanced Issue Search". 1. In the search window, click "JQL" to switch to Jira Query Language mode. 1. Define the search criteria. 1. Click the "Search" button to the right of the search window.

How to save and share a JQL filter

JQL queries can be saved as filters and shared with the rest of the team, so nobody has to rebuild the same query twice.

Once you've run a JQL query:

1. Click the "Save as" filter to open the Save Filter window. 1. Name the filter. 1. Enable the "Sync Filter" toggle so it appears on the dashboard and on Jira Software boards. 1. Define who can access the filter. 1. Click "Save".

Essential JQL syntax

A JQL query is a string of components that describe the issues you want. Every query has at least three parts — a field, an operator, and one or more values or functions — and can be modified by keywords.

Here's how each piece fits together, with examples.

Field

Fields tell JQL where to look. Common ones include:

  • Priority: Finds issues at a given priority level.

priority = High

priority = 10000

  • Description: Finds issues whose description contains a specific word or phrase.

description ~ "Please see screenshot"

  • IssueType: Returns issues of a specific type.

issueType = Bug

issueType = Improvement

  • Labels: A custom field for tagging issues into your own categories.

labels = "labelName"

  • DueDate: Finds issues by their due date.

due = "2011/01/15"

  • FixVersion: Finds issues assigned to a fix version by name or ID.

fixVersion in ("3.14", "4.2")

Operator

Operators define how a field relates to a value. The common ones:

  • Equals (=): Returns results that match the value.

assignee = "Nancy Lewis"

  • Not equals (!=): Returns issues where the field does not match. Note: != skips issues where the field has no value at all.

assignee != "Nancy Lewis"

  • Greater than (>) or less than (<): Finds issues where the value is above or below the one you specify.

votes > 10

priority < High

  • Greater than or equals (>=) and less than or equals (<=): Include matches on the value itself.

votes >= 10

priority <= Normal

  • Contains (~): Matches text within a field. Works only on text fields like Summary or Description.

summary ~ "word string"

description ~ "specific phrase"

Value

Values follow the operator and define the data you want. For high-priority issues:

priority = High

"High" is the value being retrieved.

Keywords

Keywords change the logic of a query so you can combine or negate clauses:

  • AND: Returns issues that match both clauses.

project = LearnJQL AND status = "In Progress"

  • OR: Returns issues that match either clause.

project = LearnJQL OR status = "In Progress"

  • NOT: Negates a clause or a full query, returning issues that don't match.

not assignee = jsmith

not (reporter = jsmith or reporter = lewis)

Functions

JQL functions are words followed by parentheses that may contain values or fields. They perform a calculation on Jira data or on what's inside the parentheses.

To find issues assigned to you and due before the end of today:

assignee = currentUser() AND due < endOfDay()

To push that out to end of tomorrow, pass an offset:

assignee = currentUser() AND due < endOfDay("+1")

Jira search examples

A few queries showing how the components come together:

  • To pull bugs reported by a specific team member on a specific project:

reporter = nlewis AND project = LearnJQL

AND ensures both conditions are met — issues Nancy Lewis reported inside the LearnJQL project.

  • To find issues in several projects marked with one of several priorities:

priority in (Blocker, Critical) AND project in (LearnJQL, JQLlessons, StudyJQL)

The "in" operator matches any of the values inside the parentheses — issues with Critical or Blocker priority across any of the three listed projects.

  • To identify unassigned issues created in the last 24 hours:

assignee is empty AND created >= "-1d"

"Is empty" returns issues with a blank assignee field. Relative dates like "-1d" evaluate one day before the query runs.

Enhancing Jira search and reporting with Tempo

Tempo's tools plug into Jira and widen the data JQL can reach, so your advanced queries pull in more than what native Jira exposes.

Tempo Timesheets, for example, layers custom dashboards and automated reports on top of your Jira search results, adding time and resource-tracking data to the pool your queries can filter on.

Tags

  • Timesheets

Timesheets

Optimize your projects, teams, and resources

The #1 time-tracking app for Jira. Timesheets seamlessly integrates with Jira and your existing workflows to help you track time for accounting, CapEx tracking, client billing, compliance, and more.

Start a Free Trial
Special Offer

Frequently Asked Questions

Couldn't find what you need?Go to ourDocumentation

JQL syntax is similar to SQL, but the resemblance ends there. Developers use SQL, which stands for Structured Query Language, to store and process information within a relational database.

JQL was created by Atlassian for technical and nontechnical users to find, analyze, and report on data within the Jira project management application.

Several third-party plugins and boosters in the Atlassian Marketplace can expand JQL’s search capabilities.

Explore More Content

Jira ITSM Solutions with Tempo

ITSM

Build and scale a custom ITSM solution at your own pace with Tempo's modular suite of integrated tools. Enhance Jira's capabilities and take control of your entire IT portfolio.

Learn more

Get the data you need to succeed

Time Tracker

Extend your Jira with prebuilt and highly configurable reports for straightforward time tracking.

Learn more

Align strategy and execution

Structure PPM and Strategic Roadmaps

For planning leaders looking to add a big-picture roadmap view to their structured Jira data, this integration is essential. Improve visibility to leadership, reduce reporting admin, and keep your team aligned.

Learn more

Never lose track of a brilliant idea again

Idea Manager for Strategic Roadmaps

Never lose a brilliant idea again. Idea Manager for Strategic Roadmaps has built-in best practices to help.

Learn more

Powered by Structure’s custom hierarchies, visualize your roadmap, project plans, timeline & dependencies within Jira Gantt charts

Go to marketplace

AI tools are in every sprint. The data to govern them is not.

AI attribution in Jira

Capture human time and AI activity together in Jira so you can measure what your AI tools are truly contributing and costing.

Learn more

Project and program management for Jira

Structure PPM

Visualize all your Jira data & manage portfolios of projects in real-time.

Learn more

Centralize real-time plans in one view

Structure and Gantt Charts

Gain a more complete project management solution, simplifying project reporting, improving collaboration, and ensuring projects stay on time and within budget.

Learn more

Time Tracking Software for Jira

Timesheets

Tempo’s intuitive automation and Jira-native design make it the most trusted time tracking tool for enterprise organization.

Learn more

Professional Services Automation Software for Jira

Professional Services Automation

Leverage Tempo to manage time, talent, and finances seamlessly within Jira.

Learn more

Roadmapping software for teams of all sizes

Strategic Roadmaps (Roadmunk)

The roadmapping tool designed for high-performing teams delivering boardroom-ready strategic roadmaps.

Learn more
Colleagues interacting around a desk

No-Code Power BI Jira Integration

Power BI Connector for Jira

Effortlessly bridge Jira with your preferred BI tool, unlocking unparalleled insights and enhancing decision-making

Learn more

No-code Tableau Jira integration

Tableau Connector for Jira

Effortlessly bridge Jira with Tableau, unlocking unparalleled insights and enhancing decision-making

Learn more

Real-time collaboration and capacity planning in Jira

Capacity Planner

A powerful team resource management tool designed to optimize capacity planning and project management in Jira

Learn more

Custom charts and dashboards for Jira

Custom Charts for Jira

See how work is progressing and where blockers are with the most flexible reporting app in Jira.

Learn more

Industry-leading project plan and roadmap visualizations with a Gantt chart extension

Gantt Charts for Structure PPM

Visualize project plans and roadmaps with a Gantt chart extension for Jira

Learn more

Strategic portfolio management for PMO leaders

Strategic portfolio management for PMO leaders

Tempo gives PMO directors and portfolio managers the tools to reduce delivery friction, align teams, and drive measurable outcomes.

Learn more

Jira Project Cost Tracking

Financial Manager

Project financial management for Jira & Timesheets. Monitor project costs, expenses, revenue, billing & budgets. Track Capex/Opex

Go to marketplace

Timesheets and Structure PPM Integration for Jira

Timesheets and Structure

Combining Tempo Timesheets and Structure PPM provides a unified view of time tracking and project progress, enabling more accurate reporting and effective portfolio management. Simplify workflows, enhance collaboration, and ensure projects stay on time and within budget.

Learn more

Jira Portfolio Management PPM

Structure by Tempo

Jira Project Portfolio Management (PPM): Visualize data and manage projects within spreadsheet-like tables — in less than a minute

Go to marketplace

Jira Team & Resource Management

Capacity Planner

#1 Jira Resource Management App: Optimize team allocation, skillset utilization, capacity planning & project management

Go to marketplace
Team working together at board with sticky notes

No-code Power BI monday.com integration

Power BI Connector for monday.com

Get powerful data export capabilities and connect monday.com to Power BI effortlessly

Learn more

Align your organization with proactive portfolio management

Portfolio Manager (LiquidPlanner)

Predictive scheduling and the ability to forecast project timelines and spot risks so you can meet deadlines with confidence.

Learn more

Ensure compliance and optimize spending

Governance and auditing

Portfolio governance and auditing excellence

Learn more

No more reporting limitations

Custom Charts for Confluence

Create and share all kinds of highly visual and customizable charts directly on your Confluence pages.

Learn more

No-code BigQuery Jira integration

BigQuery Connector for Jira

Integrate Jira with Google BigQuery to seamlessly export and sync data for advanced analytics and customized reporting

Learn more

Take control of your projects

Portfolio Manager and Jira

Portfolio Manager integrates seamlessly with Jira to give you predictive scheduling, real-time scenario modeling, and advanced resource management – ensuring you stay on track, no matter what challenges arise.

Learn more

Jira Time Tracking

Timesheets by Tempo

#1 Jira Time Tracking & AI Apps: Log Tempo Timesheets for Planning, Project Management & Billing. Plugin Office365, Google & Slack

Go to marketplace

Timesheets and Capacity Planner Integration for Jira

Timesheets and Capacity Planner

Seamlessly manage project timelines and resources while accurately tracking time spent on tasks. This integration enhances visibility, improves planning accuracy, and supports data-driven decision-making for better overall project outcomes.

Learn more

Agile at Scale Software

Agile at Scale

Adapt to changing business needs, rapidly adjust plans, and reallocate investment.

Learn more

Monitor financial health at every level

Financial Manager

Monitor projects and portfolios to get simple, clear, and real-time views of your costs, budgets, and profits that can be shared throughout your entire organization.

Learn more

No-code Power BI ServiceNow integration

Power BI Connector for ServiceNow

Seamlessly connect ServiceNow with Power BI, transforming complex enterprise data into actionable insights and driving smarter, data-informed decisions across the organization

Learn more

Strategic Portfolio Management

Strategic Portfolio Management

Modern modular PPM solutions that scale with your business. Align your teams with the integrated platform that bridges the gap between strategy and execution.

Learn more