I want to be capable of filtering all the issues, that a certain user has was ever involved.
The definition of involved is:
A user that his name appears in History of an issue.
Following queries can help you to find the required results. Its not provided by default with JIRA but this plugin is helpful for such queries.
All issues updated by a user, it will fetch all issues where user performed any update action
issue in updatedByUser("username"
Following query will get all issues, where the user performed any transition.
issue in transitionedBy in ("username")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.