I want to create a filter which shows me all tickets which are linked to a specific epic. How is the JQL command for this?
It does not work if i use the command for text. I just end up with the epic itself.
Hi @JR85
To search for issues in a specific epic, you can use the "Epic Link" field in your query. This allows you to find all issues linked to the referenced epic.
In JQL with your conditions, put:
"Epic Link" = EPIC-123
If you want the issues linked in the epic, and not the epic link, you can try this one:
issue in linkedIssues(EPIC-123)
Let me know if this helps you.
Best Regards.
I'm glad it worked well.
If you have other topics to discuss, feel free to ask.
Don't forget to mark the answer as accepted to close your question.
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.