Hi everyone,
I'm looking for query that shows only issues that are in Epics that are assigned to me. Does anyone have an idea ?
I was thinking about something like :
issueType in (Task, Story) AND parentEpic in (issueType = Epic AND assignee = currentUser())
Thank you,
Nicolas
welcome to the community!
Unfortunately, "plain" Jira isn't too great with searching and filtering across issue hierarchies, so to the best of my knowledge, you'll need extra tooling to solve your use case. A few directions forward:
Hope this helps,
Best,
Hannes
Just to expand on the last point, this is how this would look in the app that my team is working on, JXL for Jira; TLDR: You can simply load your relevant issues into a sheet, enable the default issue hierarchy (that's just one click), and then filter down to the epics that are assigned to you:
Once you've narrowed down your list of issues, you can work on these directly in JXL (much like you'd do in e.g. Excel or Google Sheets), trigger various operations in Jira, or export them for further processing.
As said above, there may be other apps that help with this, too. You may already know that you can trial any app for free for 1 month, and depending on the size of your size, it may be free forever. So if an app is an option for your, perhaps try a few and see which works best for you.
Any questions just let me know!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Hannes Obweger - JXL for Jira ,
Thank you for this very complete feedback. I will take a look at your suggestions.
The ideal would be to be able to create a filter usable in a board.
Thank you,
Nicolas
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That would need one of the JQL extension apps. In JQL Search Extensions, you can save your query as a filter, which you can then use to power a board.
Best,
Hannes
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I’m Maurício, a support engineer at Digital Toucan and I’m here to help you.
Unfortunately, using JQL of Jira, you’ll not be able to do it.
In the app where my team works, JQL Search Extensions for Jira, you can use this query to find all your tasks and stories, that are children of epic whose assignee is you.
issue in childrenOfEpicsInQuery("assignee = currentUser()") and type in (Task, Story)
After run this query, you can save it as a filter and then use it in your board.
Please contact our support if you have any other questions about this query.
We’ll be happy to help you!
Best regards,
Maurício
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.