JIRA - Solved my request

How to write a query that will select only the problems that I have resolved.

I found some old posts saying this is not possible, but that could change.

+43
jira
Aug 30 2018-11-11T00:
source share
12 answers

Use the following JQL: status was allowed by "username"

+49
Aug 30 2018-11-21T00:
source share

In 4.4, this seems to work:

status was "Resolved" by currentUser() 

More information can be found here .

+29
Sep 27 2018-11-21T00:
source share

The answer most often is to use JQL for something like

 status was Resolved BY currentUser() 

So long as all is well and good, it will return to you all the problems that you have ever solved. That is, if you solved the problem FOO-1966, and then opened it again, and someone else solved it again, this is still the problem that was solved by you.

Here's the best way to do this in JIRA 6 and later (including JIRA onDemand).

  • Create your own field called "Resolver". Make this field human, but do not add it to any form (if you do not want it).
  • Edit the workflow and add the post function to the problem solving problem in your workflow. Perform the Update Custom Field action and set the Resolver to %% CURRENT_USER %%.
  • Publish your workflow.

Now, when someone solves the problem using this workflow, the Resolver field will be set for the current user. Now the Resolver field is semantically "last allowed".

As an added bonus, you can use the value in the "Resolver" field to reassign questions to the person who resolved them when they reopened. I will leave this as an exercise for the reader. :-)

+5
Dec 27 '13 at 22:58
source share

You can use this JQL query:

  "Resolved by" = currentUser() 

(I just checked it in version 4.1.1 # 531 on a separate version)

There is also a plugin that you can use in older versions: https://studio.plugins.atlassian.com/wiki/display/JQLT/Home

+4
Aug 30 2018-11-11T00:
source share

None of the above worked for me on JIRA (v4.1.2 # 531)

However, his work:

 "Resource" = currentUser() AND (status = Fixed OR status = Closed OR status = "No Change Required") ORDER BY updated 
+2
May 09 '12 at 19:55
source share

You can use the WAS operator:

JIRA - Advanced Search : "The" WAS "operator is used to search for problems that currently have or previously had the specified value for the specified field"

Example: WAS status "Allowed" BY currentUser ()

+1
Aug 09 2018-12-12T00:
source share

As far as I can tell, the search for permissions that are allowed by me and more general for status changes is impossible, at least until JIRA 4.2.1 (the version I'm currently using).

Finding and improving the JQL described in 4.3 and 4.4 release notes looks like moving in the right direction ( WAS operator ), but I can't hold my breath.

0
Aug 30 2018-11-11T00:
source share

None of the above solutions worked for me. I started adding a shortcut to all my problems in resol_by_kishore, then in advanced search I use lables = resolved_by_kishore. It works great.

0
Sep 25 '12 at 6:23
source share

project = prohjectname And the status was "Allowed" by username and resolutiondate> = '2014/01/08'

and now its variants exist in jql. I’m not sure that they existed at the moment when they asked the question.

I am adding this answer so that if anyone comes here, they can find the answer

0
Sep 03 '14 at 7:28
source share

For JIRA v6.3.4, this worked for me:

 "Resolved By" = currentUser() 
0
Nov 14 '14 at 15:45
source share

I think you can use this

 status in (resolved) AND component = COMPONENT_NAME AND assignee in (currentUser()) AND resolved > -1d 

but the new thing here is resolved > -1d to get the problems that resolved me that day

resources: https://community.atlassian.com/t5/Jira-questions/JIRA-4-4-search-filter-how-to-find-issues-resolved-in-last-seven/qaq-p/77326

0
Nov 28 '17 at 9:19 on
source share

Usage = EMPTY seems to work for finding empty custom fields with newer versions of Jira

-one
Mar 26 '14 at 18:58
source share



All Articles