worklogcomment view and use in Jql - jira

I am trying to view work-log comments of a user stories from filter in Jira. Can someone shed some light on how to retrieve it?

Unfortunately, it's not possible to access worklog comments from issue navigator in Jira. To access them you have to install one of the plugins that has worklog reports. As of now, Tempo Timesheets and Timesheet Reports and Gadgets are two most popular solutions for that.

Related

Jira - Issues Filters Confluence Document

I am trying to figure out if a query that list all Jira Issues that Linked with a Confluence Page is possible.
I know there are way to work around it, such as using labels, just really curious if something similar linkedIssue available for linked Confluence document.
https://scriptrunner.adaptavist.com/5.6.7/jira/jql-functions.html#_remote_issue_links
ScriptRunner plugin in Jira may do it

JQL query to filter JIRAs based on the last commented date by a particular account / user

I am new to JIRA / JQL, and wanted help in knowing if the following is possible:
I want to filter JIRAs which have been commented on by a particular user (a bot account) in the past xx days
I want to filter JIRAs which have a particular regex in its comments in the past xx days
If the above cannot be done, I am open to suggestions as to how to achieve it using a combination of labels and description in the JIRA!
Sorry, but comments are stored within each Issue and you can't search for them globally using the native JQL query. You'd need to utilise the REST API to iterate through the Issues, extracting all the comments, then filtering the results.
Refer to this article in the Atlassian community Jira blog on the same topic and what third party tools can help work around the issue.

How do I filter issues that block issues in a specific sprint in another project?

I have two projects A and B and want to filter for all issues in B that block issues in a specific sprint in A. Is there a way to do that in JQL?
You may refer to this Atlassian question where this is answered. For more options on the same category, you can check this site as well.
You could try to use the linkedIssuesInProject() function as like the below to fetch the results that you intend to:
issue in linkedIssuesInProject("TST","is blocked by")
EDIT-1:
You need to add the JQL Tricks plugin. Please refer to the following links for the required details:
JQL Tricks plugin
Issues post JQL Tricks plugin installation
Hope this helps!
Kindly let me know if this helps you solve your requirement!

JQL to get blocked Issues

Is there a native JQL (not a plugin) that returns tickets that have linked issues listed as "is blocked by" (so I can see all my blocked tickets).
All I have found is linkedIssues() but that can require a specific issue ID to search for which is entirely unhelpful.
I am using Jira Cloud 7.4.
In the core JIRA JQL functionality the closest thing you have, as you've already found out, is linkedIssues() that requires a parent Issue reference.
What you need is Adaptavist ScriptRunner, they have a function called hasLinks(). There are also a handful of other add-ons that offer this functionality but like ScriptRunner, they all cost money.
Related JIRA community question
JIRA Cloud feature request
The below query is also helpful (add it in the filter setup):
project = "Project ID" AND issuetype in (story, Spike) AND Sprint = "Sprint ID" AND linkedIssue in issueHistory()
According to Esther Strom's answer on this Atlassian site, there's a new query type:
Atlassian has very recently introduced a new JQL function called issueLinkType, which can be used in filters, but also in boards.
It's not perfect; if you're already using card colors for something else, you won't be able to use this as well. It also behaves inconsistently when a ticket has links of multiple types. But if you're looking for an easy way to get a view into what might be blocked, and what might have blockers, it works pretty well.
In KQL you can specified the type of link.
For what you want to do here what you can use
issue in linkedIssues([Issue#],"is blocked by")

How to create a filter to show issues without worklog in JIRA

I am using JIRA for tracking issues and I want to show Issues without worklogs using JQL.
Any answers is much accepted. Thanks!
Try this jql query:
Timespent is empty

Resources