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
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
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?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You may consider utilizing the following:
Sprint IN openSprints()and (assignee = currentUser() or assignee was currentUser())
Best regards
Sam
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.