Skip to content

Instantly share code, notes, and snippets.

@ranraj
Last active August 29, 2015 14:07
Show Gist options
  • Save ranraj/9dfa93c8569bedb3eb92 to your computer and use it in GitHub Desktop.
Save ranraj/9dfa93c8569bedb3eb92 to your computer and use it in GitHub Desktop.
Jira serch with query
text~"converted"
Developer = currentUser()
project = ProjectA
assignee = currentUser()
resolutiondate >=-3w
ORDER BY updated DESC
## Finding current unresolved and assigned
assignee = currentUser() AND resolution = Unresolved ORDER BY updatedDate DESC
## Finding resolved issue of the current user as developer
Developer = currentUser() AND project = ProjectA AND resolutiondate >=-6w ORDER BY updated DESC
## With text search
Developer = currentUser() AND project = ProjectA AND resolutiondate >=-6w AND text~"converted" ORDER BY updated DESC
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment