Hello, I am using the following JQL to get all issues from specific projects that have an epic link, however I can't get the epics themselves as well. A little help please?
project in (123, 234, 345, 456, 567, 678) AND issuetype in ("Analysis/Estimation Request", Bug, Epic, "New Feature", Story, Task, "Issue Bug", Sub-Task) and "Epic Link" is not EMPTY
Thanks!
Hello @Andrei Pogorelet
This should do the trick
project in (123, 234, 345, 456, 567, 678) AND ((issuetype in ("Analysis/Estimation Request", Bug, "New Feature", Story, Task, "Issue Bug", Sub-Task) and "Epic Link" is not EMPTY) OR type = epic)
Thanks for the reply Tarun, but unfortunately this brings me all the epics from Jira, and I need only the ones from the projects mentioned in the query.
Sorry if I wasn't clear about this in my original post.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
try this one
project in (123, 234, 345, 456, 567, 678) and (type = epic or (issuetype in ("Analysis/Estimation Request", Bug, "New Feature", Story, Task, "Issue Bug", Sub-Task) and "Epic Link" is not EMPTY))
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.