Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

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

refinedProjectsOfType(type, ...)

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

refinedPortal(ID,...)

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

refinedSite(KEY,...)

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

refinedCategory(KEY,...)

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")

  • No labels