Last active
March 21, 2018 10:59
-
-
Save silversonicaxel/4f8bfb6320494fae1ea94a7c706abbd7 to your computer and use it in GitHub Desktop.
JQL #jira #sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// current assignee | |
project = "PROJECT_NAME" AND assignee is not EMPTY | |
// last created tickets | |
project = "PROJECT_NAME" ORDER BY id DESC | |
// blocked tickets on a status for the last X days | |
project = "PROJECT_NAME" AND | |
(status = "In Progress" AND status changed to "In Progress" before -[X]d OR status = "Review" AND status changed to "Review" before -[X]d) | |
ORDER BY status ASC | |
// resolved without resolution | |
project = "PROJECT_NAME" AND status = Resolved AND resolution is EMPTY |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment