I have a fairly simple setup in one project. There is a custom field (multiple choices) to select the board:
And then in each board I filter by this field so in the Backlog the team only see the issues related to their team and not all the issues.
The filter seems to work fine but I see some issues in the baclog that shouldn't be there. For example in the Coding board this is the filter:
fixVersion in unreleasedVersions() OR fixVersion is EMPTY AND "Board[Select List (multiple choices)]" = Coding
But in the backlog I see this:
This also includes tickets without any board assigned:
You might have to consider using parenthesis in your query;
Your current query will return issues from the "Coding" board that have no fix version set as well as ANY other issues that have fix versions which are unreleased.
fixVersion in unreleasedVersions() OR fixVersion is EMPTY AND "Board[Select List (multiple choices)]" = Coding
If you insert parenthesis as following;
(fixVersion in unreleasedVersions() OR fixVersion is EMPTY) AND "Board[Select List (multiple choices)]" = Coding
The query will return issues that have an unreleased fix version OR an empty fix version which belong only to the "Coding" board.
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.