HI all
I am getting mad with this query that I am using in a structure too to gather all teh Epics from a specific projects that do not have any linking to a set of Operational projects.
I thought this one was correct but it seems not:
Project = "X" AND ((issuefunction not in linkedIssuesOf("project = X", "is Epic of") OR issuefunction not in linkedIssuesOf("project in (y, z, etc...)"))
The Goal of this query is to visualizize all the Epics form my project X that do not have any story in projects y, z and no linking to project y, z as well. I would like also to visualize the project X with no link and story at all
Thanks a lot
Laura
Hi @lau pel
I don't know of the JQL will provide the right results, but there are issues with you JQL
You missed some () in the clause
JQL should be:
((issueFunction not in linkedIssuesOf("project = X", "is Epic of")) OR (issueFunction not in linkedIssuesOf("project in (y,z, etc...)"))) and project ="X"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.