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:
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:
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:
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:
worklogGroupRestriction("Developers")
Returns: A list of issues where the specified group is listed in the Worklog Restriction field.