How to get the details of JIRA assigned to current user within a time?

Atul Kumar Pandey March 2, 2018

how can we get all the details that how much JIRA is assigned to the current user.

 

Note: the JIRA might be created any time and updated anytime

 

i want to know is there any search or keyword we can use like Assigned date which will give how many Jira assigned to current user in an week or time frame.

Atul

2 answers

0 votes
Atul Kumar Pandey March 4, 2018

No

0 votes
Ivan Tovbin
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 2, 2018

Check out this documentation on searching for issues in Jira.

Hope this helps.

Atul Kumar Pandey March 4, 2018

No it does not i have checked each and every column and data types but still it does not as there are no function or we can check.

Can you help is there any function as assignedDate or something like which we can use to find the JIRA assigned to particular person on that date or between a particular date.

Ivan Tovbin
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 4, 2018

For example, try:

created >= startOfWeek() and assignee = currentUser()

This will return a list of issues created since the start of current week and assigned to the current user.

If you want to know the date of assignment, then there is no such thing in Jira out of the box. However, you can create a 'date' type custom field and then use 3rd party add ons (Automation, Scriptrunner etc.) to populate it with current date when an issue is assigned or it's assignee changes. That way you can track the date of assignment and return a list of issues that have been and currently are assigned to the current user. 

Atul Kumar Pandey March 5, 2018

Thanks will check with the Admin to create a custom field.

Suggest an answer

Log in or Sign up to answer