How do I create a filter for looking Task with labels not included "Apple2019" on it?
I tried:
labels !~ Apple"
labels !~ "Apple2019"
Both is throwing me error:
The operator '!~' is not supported by the 'labels' field.
Hi Karmandroid,
PLease try JQL:
type=Task and label != "Apple2019"
Yep, I just noticed it, was using wrong operators.
Thank you
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Probably you also want to retrieve issues not having labels at all... so use:
type=Task and (label != "Apple2019" OR label is EMPTY)
Regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
how would you add a wild card where there are no labels that start with Apple?
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.