I know how to find tickets that I created in JIRA using this filter:
author = currentUser()
But I’m struggling to find a way to filter issues where I have left comments. I tried using something like this but it doesn’t seem to work:
commentedBy = currentUser()
I’ve been looking through the JIRA documentation but can’t find the right syntax for this. I work on a team where we comment on each other’s tickets frequently, and I need to track all the issues where I’ve provided input or updates through comments. Does anyone know the correct JQL syntax to search for issues that contain my comments? I’ve tried several variations but none of them return the expected results.