Custom search query in Jira.
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
Note : Edit based on your need
Monday, October 20, 2014
Subscribe to:
Posts (Atom)
Merging two sorted arrays - Big O (n+m) time complexity
Problem : Merge the two sorted arrays. Edge case : Array can empty Arrays can be in different size let getMaxLength = ( input1 , input...
-
There was a sizeable crowd gathered in a temple to attend the festival. The wireless mic surprised me during the priest's talk when ever...
-
Bitbuket.org an implementation of git. It provide you a private repository with free of cost up to 5 user access. Requirement: Gi...
-
Simple math formula in elm using pipe and currying import Html exposing (..) main = view view = div [][ div [] [ text " ...