Here is an example query:
(project = PSAT AND issuetype = "Architecture & Design") AND (project = AD AND issuetype in (Epic, Story, Task, Sub-task))
I want the board to show all standard issue types in the project "AD" (there are no custom issue types used in this project) and only show the custom issue type "Architecture & Design" for the "PSAT" project.
The query shows green and can be saved. However, no issues populate even after I created a new issue for testing.
Hi Jordin,
You should use 'OR' instead of 'AND'.
(project = AD) AND (project = PSAT AND issuetype in ("Documentation"))
And here is the filter with the OR actually replacing the AND
(project = PSAT AND issuetype = "Architecture & Design") OR (project = AD AND issuetype in (Epic, Story, Task, Sub-task))
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.