I know how to find issues that have time logged against them on a specific date; something like
assignee = currentUser() and worklogDate = "2018/03/01"
But I need to find all tickets that have had time logged against them, period. Is there a function that just uses true/false rather than requiring a specific date? We do have the JQL Tricks plugin, and are open to other plugins that may do this.
You could query like this
worklogDate > -4d and worklogDate < -1d
That's still requiring a time range. I want to find ALL tickets (restricted by other criteria, like project, status, and user) that have time logged against them, no matter when it happened - even if it was three years ago.
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.