I am trying to create a filter that results in a list of tickets that mention the current user in a comment. When we tag others we use "@" then the name.
This query
project = SD AND resolution = Unresolved AND comment ~ (currentUser())
Results in
Operator '~' does not support the list value '(currentUser())' for field 'comment'.
...and never mind.
This works as expected by dropping the paren's around currentUser() .... smh
project = SD AND resolution = Unresolved AND comment ~ currentUser()
Is this still working for you? im not getting any results- possibly due to recent change to "user" display name GDPR stuff...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.