I was searching for all the bugs that are transferred from me to my/other team..
I'm point of contact for a feature and all the defects will be transferred first to me and then I'll assign to my team, so I want to generate a report of how many defects I got at the end of the day.
I'm trying something like this
project = "XYZ" and text ~ "Sudheer"
Expectation is to search the "history" of each bug where my name is listed once..
Hi @Sudheer
If I understand your request correctly, you need to get a history of changes for the specific user.
I'm not good with JQL, so I'd like to suggest the Issue History app for Jira app. Here you can filter issues by assignee, projects, sprints, dates, etc.
For instance, it may look like on the screen below:
The app was developed by my team, it can be an alternative solution for you or any community member in case if JQL doesn't work.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Sudheer ,
Please try below query
Project = xyz and assignee was sudheer
you can add issue type and status parameters and dates like created after ..etc if required.
More details @ https://support.atlassian.com/jira-work-management/docs/advanced-search-reference-jql-fields/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes.
assignee was means, you were the assignee that tiime, may not be now.
you can try below. This will give all the list issues ,which were assigned to you. but now there are assigned to some one else.
Project = xyz and assignee was sudheer and assignee != sudheer.
https://support.atlassian.com/jira-work-management/docs/advanced-search-reference-jql-fields/
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.