In a project, there will be lot of epics, issues etc. If I need to find out in which all tasks team members has not logged, what should be the steps.
Does the following JQL give you what you want?
timespent is Empty
you can add that bit to your more complete query, e.g. project = abc AND timespent is empty
In the database you can get it quite easily
SELECT * FROM jiraissue ji
where ji.id not in (select distinct wl.issueid from worklog wl)
of course, you can filter to get only some project
AND ji.project = (select pr.id from project pr where pkey = 'PT')
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.
if you have access to the jira DataBase that query gives you the issues that are not present in the worklog table.
You take the issues whose id is not in the list of issues saved in worklog table.
worklog table looks like this:
You could also use simply something like this
SELECT * FROM jiraissue
WHERE (TIMESPENT is null OR TIMESPENT = 0)
AND project = (select pr.id from project pr where pr.pkey = 'PT')
But you could lose issues that had work logged and then it was removed (not a big problem usually but...)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Welcome to great meetings, with less work. Automatically record, summarize, and share instant recaps of your meetings with Loom AI.
Learn moreOnline forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.