What I have to add to my filter to find only tickets with a comment (is not about a specific comment, but generally whether there is a comment)
Thank you :)
Hi, @Inna Kohler - welcome to the Community!
Unfortunately the Comment field doesn't allow searches for empty/non-empty, so you have to do some ugly things :(
Here are a few ways:
(comment ~ "anything*" OR comment !~ "anything*")
If you want to search for tickets where there are NO comments, add a ! before the opening parenthesis to turn it into a "not" statement.
commentsCount > 0
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.