Worklogs
Find issues by querying on logged work (workLogged)
Use workLogged() to find issues by querying on logged work, for example, when, by which user, etc.
issueFunction in workLogged("worklog query")Supported arguments
The following arguments are supported when writing your logged work query:
afterdateFor example
"after 2025/03/28".beforedateFor example
"before 2025/03/28".byusername or user functionFor example
"by admin"or"by currentUser()".inRoleroleFor example
"inRole Administrators".inGroupgroupFor example
"inGroup jira-administrators".
Passing dates in your arguments
The following date formats are supported in your arguments:
yyyy/MM/ddFor example
"after 2025/03/25".yyyy-MM-ddFor example
"after 2025-03-25".- Period format
For example
"after -5d". - Date function
For example
"after startOfMonth()"or"after endOfMonth()"or"before startOfDay()"or"before lastLogin()"etc.
workLogged examples
If we want to find issues with work logged by someone with the username admin on the 28 March 2025, we would use the following:
issueFunction in workLogged("on 2025/03/28 by admin")If we want to find all issues with logged work by members of the Developers role in the previous calendar month, we would use the following:
issueFunction in workLogged("after startOfMonth(-1) before endOfMonth(-1) inRole Developers")If we want to find all issues with worked logged by someone with the username admin anytime after 12:30 on the 25 March 2025, we would use the following:
issueFunction in workLogged("by admin after \"2025/03/25 12:30\"")