5 Essential JQL Queries Every New Jira User Must Know

5 Essential JQL Queries Every New Jira User Must Know - JIRA

Why JQL Matters for New Users

Jira's basic search filters work fine for simple tasks, but JQL (Jira Query Language) unlocks Jira's true search power. Instead of clicking through multiple dropdown menus, you can find exactly what you need with a single query.

5 Essential JQL Queries to Master

1. Find Your Assigned Issues

assignee = currentUser()

This shows all issues assigned to you across every project. Perfect for daily standup preparation.

2. View Issues You're Watching

watcher = currentUser()

Displays all issues you're watching, helping you stay updated on important work without being assigned.

3. Filter by Project and Status

project = "Marketing Website" AND status = "In Progress"

Replace "Marketing Website" with your project name. This shows active work in a specific project.

4. Find Recently Updated Issues

updated >= -7d

Shows issues updated in the last 7 days. Change "7d" to "1w" (week), "1M" (month), or any timeframe you need.

5. Search by Priority and Due Date

priority = High AND due <= 7d

Finds high-priority issues due within the next week. Essential for workload planning.

How to Use These Queries

Navigate to Filters > View all issues, then click Advanced to switch to JQL mode. Copy and paste any query above, then modify the values to match your needs.

Pro tip: Save frequently used queries as filters by clicking Save as after running your search. This creates reusable shortcuts in your sidebar.

Start Simple, Build Confidence

These five queries handle 80% of common search scenarios. Master these basics before exploring complex operators like AND, OR, and NOT. Your Jira efficiency will improve dramatically once JQL becomes second nature.