Hi
I have the follow structure in Jira: Iniciativa > Epic > Story/Task
I create this JQL to bring all issues under Iniciative until story/task level, but it seems that exists something wrong at my logic
(issueFunction in linkedIssuesOfAllRecursiveLimited("project = INI AND STATUS NOT IN (Cancelado) AND created >= 2020-01-01", 2) OR (project = INI AND created >= 2020-01-01 AND STATUS NOT IN (Cancelado))) AND status not in (Removed)
Solved! Go to Solution.
(issueFunction in linkedIssuesOfAllRecursiveLimited("project = INI AND STATUS NOT IN (Cancelado) AND created >= 2020-01-01", 2) AND created >= 2020-01-01 OR (project = INI AND created >= 2020-01-01 AND STATUS NOT IN (Cancelado))) AND status not in (Removed)
Adding AND created >= 2020-01-01 after the issuefunction should work in this case