Refined for Jira includes some JQL functions to facilitate search and filtering. These can be used wherever JQL can be used.
What is JQL
JQL is the Jira Query Language used by many of the APIs and as configuration options for searching. You can find out more here: https://www.atlassian.com/software/jira/guides/expand-jira/jql
Refined functions
JQL Function: ProjectType
Description:
Perform searches based on projects of the given type.
Syntax |
|
Supported fields | Project |
Supported operators | IN , NOT IN |
Examples:
Find issues in projects of type Service Desk:
project IN refinedProjectsOfType("service_desk")
Find issues in projects of type Software aka Jira Agile:
project IN refinedProjectsOfType("software")
Find issues in projects of type Business aka Jira Core:
project IN refinedProjectsOfType("business")
JQL Function: PortalProject
Description:
Filter on Jira projects with underlying Service portal IDs
Syntax |
|
Supported fields | Project |
Supported operators | IN , NOT IN |
Example:
Get Jira project (issues) for project corresponding to portal with ID 43:
project in refinedPortal(43)
JQL Function: RefinedSite
Description:
Filter on content placed in a Refined Site
Syntax |
|
Supported fields | Project |
Supported operators | IN , NOT IN |
Example:
Get Jira project (issues) for all projects placed in the Refined site with key creative
project in refinedSite("creative")
JQL Function: RefinedCategory
Description:
Filter on content placed in a Refined Category
Syntax |
|
Supported fields | Project |
Supported operators | IN , NOT IN |
Example:
Get Jira project (issues) for all projects placed in the Refined category with key products
project in refinedCategory("products")