I have a filter for linked issues and 1 simple condition:
"issue in linkedIssues(XXXXX) OR issue in linkedIssues(XXXXX) AND status not in (Closed, Done, Resolved) ORDER BY priority DESC
But the AND condition is ignored no matter how I put it (not in, or in etc.)
Any ideas?
Have you tried parenthesis?
(issue in linkedIssues(XXXXX) OR issue in linkedIssues(XXXXX)) AND status not in (Closed, Done, Resolved) ORDER BY priority DESC
produces a different result from
issue in linkedIssues(XXXXX) OR (issue in linkedIssues(XXXXX) AND status not in (Closed, Done, Resolved)) ORDER BY priority DESC
sorted
Many thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.