Home
Plugins ↓
JQL Tricks Plugin
JQL Tricks Plugin - Cloud
JQLT Cloud Installation
JQLT Cloud Configuration
JQLT Cloud Usage
JQLT Cloud License
JQLT Cloud FAQ
JQL Tricks Plugin - DC
JQLT DC Installation
JQLT DC Configuration
JQLT DC Usage
JQLT Issue Functions
JQLT Subtask Functions
JQLT Links Functions
JQLT Development Functions
JQLT Worklog Functions
JQLT Project Functions
JQLT Component Functions
JQLT Version Functions
JQLT Group Functions
JQLT User Functions
JQLT Date Functions
JQLT DC License
JQLT DC FAQ
JQLT DC Known Issues
JQLT DC Performance
JQL Tricks Cloud Migration
Simplified Planner
J-Planner Installation
J-Planner Configuration
J-Planner Usage
Creating a plan
Editing a plan
Deleting a plan
Viewing a plan
Modifying a plan
J-Planner FAQ
Atla-Search Plugin
Atla-Search Installation
Atla-Search Configuration
Atla-Search Usage
Atla-Search License
Atla-Search FAQ
Copy to subtask Plugin
All Plugins
Tutorials
The Book
Contact Us
Home
Plugins ↓
JQL Tricks Plugin
JQL Tricks Plugin - Cloud
JQLT Cloud Installation
JQLT Cloud Configuration
JQLT Cloud Usage
JQLT Cloud License
JQLT Cloud FAQ
JQL Tricks Plugin - DC
JQLT DC Installation
JQLT DC Configuration
JQLT DC Usage
JQLT Issue Functions
JQLT Subtask Functions
JQLT Links Functions
JQLT Development Functions
JQLT Worklog Functions
JQLT Project Functions
JQLT Component Functions
JQLT Version Functions
JQLT Group Functions
JQLT User Functions
JQLT Date Functions
JQLT DC License
JQLT DC FAQ
JQLT DC Known Issues
JQLT DC Performance
JQL Tricks Cloud Migration
Simplified Planner
J-Planner Installation
J-Planner Configuration
J-Planner Usage
Creating a plan
Editing a plan
Deleting a plan
Viewing a plan
Modifying a plan
J-Planner FAQ
Atla-Search Plugin
Atla-Search Installation
Atla-Search Configuration
Atla-Search Usage
Atla-Search License
Atla-Search FAQ
Copy to subtask Plugin
All Plugins
Tutorials
The Book
Contact Us
Return Type:
PROJECT
recentProjects
projectWithUserInRole
projectMatches
recentProjects
recentProjects()
Function To find all issues in the recent Projects. It is what is given in the Atlassian's JQL tutorial. Really useful function!
Usage/Examples:
project in recentProjects()
- Returns all the issues in the recent projects
projectWithUserInRole
projectWithUserInRole
(role,[user])
Function To find all issues in the projects where the specified user is in a given role. If not user is supplied, current user is used.
Since
: v2.2
Usage/Examples:
project in projectWithUserInRole("Administrators")
- Returns all the issues in the projects where the current user is an Administrator.
project in projectWithUserInRole("Developers","someguy")
- Returns all the issues in the projects where the user "someguy" is a Developer.
projectMatches
projectMatches(regex)
Function To find issues in projects with name that matches a given Java regular expression
Since
: v3.0.1
Usage/Examples:
fixversion in projectMatches("Go.*")
- Returns all issues in versions with names starting at "Go" like Goal, Goat, GoDaddy, etc.
See
here
for more examples in Java regex.