This JQL stuff is sometimes so awesome and so many times completely and totally non-intuitive.
There seems to be no way to do a search that simply excludes a single word even though the instructions suggest it should work, but it doesn't.
Examples that all fail:
project = HLP AND text ~ "create" -build
project = HLP AND text ~ -build
project = HLP AND text ~ "create" NOT "build"
project = HLP AND NOT text ~ "build"
and several others that should seem to work but don't according to:
https://confluence.atlassian.com/jirasoftwarecloud/search-syntax-for-text-fields-764478343.html
Hi Chris,
You were almost there:
1) project = HLP AND text ~ "create" -build shold be: project = HLP AND text ~ "create -build" 2) project = HLP AND text ~ -build works fine for me 3) project = HLP AND text ~ "create" NOT "build" I think you expect all with "create" excluding with "build" and this is the first sample 4) project = HLP AND NOT text ~ "build" The second sample works for me
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.