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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.