I don't have JQL booster and I need to use the following functions "issueinepics" and "subtasksOf" that are not working in normal JIRA. What functions can I use instead?
This is my query which is not working:
issue in subtasksOf("Project = SREST2 AND issuetype = Epic AND status not in (Closed, Cancelled, Resolved,Done)") OR Project in (SREST2) AND issuetype in (Epic) AND status not in (Closed, Cancelled, Resolved, Done) OR issue in issueinepics("Project=SREST2") AND project != SREST2 ORDER BY key ASC
I want to show all the Epics in project SREST2 only and I want the issues inside each Epic to be shown from any other projects.
What about
parent in ("Project = SREST2 AND issuetype = Epic") AND resolution is empty
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.