JQL

JQL is Jira's SQL language. It is somewhat baffling as a noob, so this will mostly be a list of resources and common queries I use.

Queries

See all issues touched/updated by a user[3]

An update in this case includes creating an issue, updating any of the issue's fields, creating or deleting a comment, or editing a comment (only the last edit).[4]

issueKey IN updatedBy("username")

Get all related tasks and subtasks of an issue or epic[5]

parent = EPIC-123 OR key in linkedIssues("EPIC-123")

References

  1. JQL Cheat Sheet
  2. JQL: Get Started with Advanced Search in Jira | Atlassian
  3. How to find issues which are updated by a specific user using JQL?
  4. updatedBy(): Advanced searching - functions reference | Jira Software Data Center and Server 8.1 | Atlassian Documentation
  5. Get all subtasks and linked issues to my issue

Last modified: 202401040446