I have 5 users to whom some issues are assigned. I am looking for a query that returns all issues assigned to them PLUS the epics of those issues (whether epics are assigned to them or not).
Hi, Mohsin!
I don't believe this is doable without plugins (others may correct me later :) ).
Do you have either ScriptRunner or another plugins to enhance your JQL?
I recall on ScriptRunner you could do:
issueFunction in epicsOf("assignee in (User1,User2)") or assignee in (User1,User2)
Other plugins may have a different function to achieve the same.
I don't believe you need a plug in for this.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Filipi Lima , I don't think I have any plugins. However this query is working perfectly for my purpose. Thanks ever so much
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You're welcome, Mohsin!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I do believe that the ScriptRunner plugin is needed to use the issueFunction method. What I was referring to was my answer below. But if this is working for you, great!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you for clarifying, Garrett!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You should be able to use a simple "in" statement for assignee, and then in your results be sure to show the Epic Link as a column.
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.