Not really sure of the best way to word this but I'm wondering if there is any ways to not include in a JQL search a component that isn't tagged with other components. I have provided an example of the dataset I'm working with. I would like to return all the ones that do not contain "Hardware" strictly. I would like to only see FC-48 and FC-31 drop off since they are the only ones that are tagged with only Hardware and not other components. But I want to keep the other ones such as FC-32 even though its tagged with Hardware I need it show up still since it has another component called Assembly and I need to still pull stuff that has other components even if its tagged with the Hardware. My current filter removes anything that has "Hardware" as the component. Does anyone know any way of doing this?
My current filter that I'm working off of: project = "FC" AND issuetype = Task AND (component not in ("Hardware") OR component is EMPTY)
If your component list is limited,
- you can add an additional "OR component in ("x", "y"....)
basically include all the components
- or just write a "....component in ("x", "y"....) OR component is EMPTY"
and do not include the 'Hardware' in the IN list above
Oh okay. I was hoping there might be a better way instead of explicitly stating the knowns which might grow over time and need readjusted. Was hoping for a dynamic approach. Thanks anyways!
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.