Apps documentation
Issue Templates for Jira
Cloud Server/Data Center
Issue Templates for Jira

Cloud

Server/Data Center

Documentation
FAQ
Release notes
Articles & Videos
Last updated Feb 13, 2023

JQL searchers

This section provides information on using JQL searchers provided by Issue Templates for Jira app.

Issue Templates for Jira app adds JQL functions described below. These searchers can be used in any place in Jira where using JQL is available: in the Issue Navigator, in a Saved Filter, as an Agile Board query, etc.

JQL Search for issues

JQL Searcher Search for issues
createdFromTemplateKey created from the particular template using a template’s key
createdFromTemplateName created from the particular template using a template’s name

JQL Search for templates

JQL Searcher Search for issues
issueTemplateEnabled is not Empty that are templates.
issueTemplateEnabled = "true" that are set as a templates (enabled templates)
issueTemplateEnabled = "false" that used to be templates (disabled templates)
issueTemplateName ~ Components that name contains given string
issueTemplateScopeId is Empty that use (inherit) scope
issueTemplatePrimary = "true" that can be used as primary templates ( only primary templates are displayed in Template Select )
issue.property[com.deviniti.issue-templates__template].projectsIdsThatTemplateAvailableIn is empty find templates that are available to all projects
issue.property[com.deviniti.issue-templates__template].projectsIdsThatTemplateAvailableIn is not empty find templates that are restricted in some projects
ssue.property[com.deviniti.issue-templates__template].projectsIdsThatTemplateAvailableIn = 11122 find templates, which availability is restricted and which can be used in the project with ID = 11122
issue.property[com.deviniti.issue-templates__template].projectsIdsThatTemplateAvailableIn in (11122, 11130) find templates, which availability is restricted and which can be used in projects from the list
issue.property[com.deviniti.issue-templates__template].projectsIdsThatTemplateAvailableIn is empty OR issue.property[com.deviniti.issue-templates__template].projectsIdsThatTemplateAvailableIn = 11122 find all templates that can be used in the project with ID = 11122

Examples

To find issues created from template TEMP-15: createdFromTemplateKey = TEMP-15.

To find issues created from template TEMP-15 which is named ‘Onboarding employee’: createdFromTemplateName ~onboarding.