
I normally would want to skip this, but it may be useful to understand some workarounds!
JQL
The Jira Query Language is used in the advanced searches, it allows you to get more detailed results. Normally it would be overkill, speicially when the basic search it’s quite useful. But when searching for details or comparing multiple specific fields to filter out results, then it’s not as useful.
The documentation contains a few good examples of what you can do, in short it’s like the following:
- Unresolved, overdue issues:
duedate < now() AND status NOT IN (closed, resolved) - Issues belonging to a closed sprint:
sprint in closedSprints()
Now think that you have to check +40 people across more than 20 projects and it may not seem that much help those small nuggets of information.
Concepts
https://amoeboids.com/blog/a-quickstart-guide-to-jira-query-language-jql/
Basic Examples
sprint IN openSprints()
updated >= -7d
ORDER BY updated DESC
project = "CAP" AND
sprint IN closedSprints() AND
status = "Open" AND
updated >= -15d
ORDER BY priority DESC