Hi,
I want to get all issues, which does not contain comments with a given word, e.g. no comment of a issue shall contain the word "Test".
Currently the search looks at every comment but not the whole comments of a issue. This means, if a issue has several comments, one does contain the word but one of the others does not, the issue gets displayed in the navigator.
All issues of project MYPROJ, which do not contain comments with the text "Test".
project = MYPROJ AND comment !~ Test ORDER BY key ASC
How do I write a query which matches all comments of a issue?
If I got you correct you want to select issues where all comments does not contain the word "Test".
Hmm, I think this can not be achieved with advanced JQL. As you mentioned as soon as you have in one comment "Test" the 'does not contain' condition becomes true.
Sorry
This can be achieved by building two queries:
1) Build a query that gives you all tickets that contain your text "Test":
project = "MYPROJ" AND comment ~ "test"
2) Save that query and note the filter id. We'll pretend the filter id is 1234
3) Reference that query to get the opposite of it:
project = "MYPROJ" AND filter != 1234
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That did exactly what I needed!
Thanks you so much
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
See the answer by Ignacio Pulgar (May 9, 2018) in this thread:
The secret ingredient is how to use the filter:
<some-criteria-here> AND FILTER NOT IN (<filter-ID>)
Definitely counter-intuitive IMO...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Pat Cullen, I am trying to use your suggestion with two queries but getting error "causes a cyclical reference" when executing the second one. Specifically, I created this first query:
type = "Enhancement Request" AND comment ~ housekeeping ORDER BY created ASC
Saved it with filter ID: 27613
Then use filter in second query:
type = "Enhancement Request" AND filter !=27613
I am trying to get all tickets without comment that includes the text" Housekeeping". Any help would be very much appreciated!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The trick is to not use similar expressions in both (here it's the 'type' term), per @Florian K's message above.
If you save only this part as your first filter: 'comment ~ housekeeping'
then your second query should then work.
Mark
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
How can i search for string not containing # character in comments. above solution is not valid here as # being reserved character in JQL
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.