Skip to main content

Argon Powerful JQL Search

Argon Powerful JQL Search is a Jira Forge app that extends Jira Query Language with powerful functions, searchable entity properties, and custom fields. It continuously indexes your Jira data so you can express complex questions directly in JQL (links, hierarchy, time in status, comments, worklogs, regex, and more).

How to use these docs

Quick examples

-- Find issues that link to more than two other issues
linksNumber > 2
-- Find issues linked by High‑priority issues that are Done
linkedByPriority = "High" AND linkedByStatus ~ "Done"
-- Time in status: issues with ≥ 3 days in "In Progress"
"In Progress.time" >= timeExpression("3d")

Tips

  • Durations: Use timeExpression("1w 2d 3h") to compare time values in JQL.
  • Combine features: Mix JQL functions with entity properties for precise targeting.
  • Operators: Number properties support =, !=, >, >=, <, <=; string properties support =, !=, ~, !~.

What’s in the sidebar

  • JQL Functions: Attachments, comments, changed/transitioned by, field value/count, regex, links & hierarchy, worklog, time in status, math helpers.
  • Core Concepts: Entity properties and the Time in Status field with timeExpression.