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
Check out this documentation on searching for issues in Jira.
Hope this helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.