I'm trying to write a JQL query with component filter with value not equal to Prod, and this gives zero matched issues below is the query used,
project = <projectName> AND component != Prod
NOTE: The respective tickets/issues have component field empty.
Hi @Mohan Kona and welcome to the Community!
If you want to find issues with no component on them, you need to search for them explicitly like this:
Project = <projectName> AND Component IS EMPTY
You can combine that with your previous search if you want to find issues with a different component listed than "Prod"
Project = <projectName> AND (Component IS EMPTY OR Component != "Prod")
Hope this helps!
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.