Hi!
How to search issues with empty component (component = EMPTY), excluding from search results those issues where the component is not set (i.e., the projects / issue types that don't use components).
Hi @Klinta Šverna ,
You can use component = empty or component in (empty). This will return all issues with empty components. To exclude projects not using components, let's consider this scenario.
Given the following scenarios you can use these JQL.
Project in ("Test Project","VM Project") and issuetype in ("New Feature", "Customer Reported Bug") and component = empty --> Will return issues with empty components under Project and issuetype using components.
Hope this helps.
Hi @Klinta Šverna ,
welcome to the Atlassian Community!
Unfortunatelly I don't think it's possible. You can exclude some projects from search using
project not in (KEY1, KEY2, ...)
But you would need to look into these project, whether there are some components or not (or use REST API to get this information).
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.