Jql query - Issue type touch per assignee

Graeme Doyle August 19, 2024

Hi everyone,

I was wondering if someone could help me. I need to create a jql for the following. Inside a project within a specific team I need to be able to list all issue types completed in the last two previous sprints and who touched them? Any help would be fantastic! Thanks in Advance!

Graeme

1 answer

1 accepted

1 vote
Answer accepted
Samuel Gatica _ServiceRocket_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
August 19, 2024

Hi @Graeme Doyle 

Welcome to the community!

Unfortunately, JQL does not allow for direct querying of users who have interacted with an issue, such as those who commented, transitioned, or edited it. However, you can approximate this functionality by reviewing the assignee and reporter details.

Jira doesn't have a direct JQL function to filter issues by the last two previous sprints, but you can use the Sprint field and the resolution or status field to find completed issues.

 

Hope this helps!

Best regards

Sam

Graeme Doyle August 19, 2024

Hi Sam,

 

Thanks for getting back to me. Can you search the same only by assignee but for that where assignees to the issue type?

Samuel Gatica _ServiceRocket_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
August 19, 2024

Hi @Graeme Doyle 

You may consider utilizing the following:

Sprint IN openSprints()and (assignee = currentUser() or assignee was currentUser())

 

Best regards

Sam

Graeme Doyle August 19, 2024

Excellent, thanks very much!

Suggest an answer

Log in or Sign up to answer