Skip to main content
Skip table of contents

New JQL Functions

What you will learn here

This app provides two new JQL functions, commentGroupRestriction () and worklogGroupRestriction (), designed to enhance your querying capabilities within Jira:


Comment Group Restriction

commentGroupRestriction: Retrieves issues that have a specific group set in the Comment Restriction field. This allows users to query issues based on the group of users restricted from viewing comments.

Syntax:

JAVA
commentGroupRestriction("groupName")

Parameters:

  • groupName: The name of the group for which you want to find issues with restricted worklog visibility.

Example Usage: To find all issues where the group "Developers" is restricted from viewing comments, use:

JAVA
commentGroupRestriction("Developers")

Returns: A list of issues where the specified group is listed in the Worklog Restriction field.

Worklog Group Restriction

worklogGroupRestriction: Rtrieves issues that have a specific group set in the Worklog Restriction field. This allows users to query issues based on the group of users restricted from viewing worklogs.

Syntax:

JAVA
worklogGroupRestriction("groupName")

Parameters:

  • groupName: The name of the group for which you want to find issues with restricted worklog visibility.

Example Usage: To find all issues where the group "Developers" is restricted from viewing worklogs, use:

JAVA
worklogGroupRestriction("Developers")

Returns: A list of issues where the specified group is listed in the Worklog Restriction field.

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.