- Get started
- About
- First steps
- Glossary
- Migration to Cloud
- Configuration
- Global configuration
- Repository
- Template configuration
- Template scope
- Manage templates
- Supported fields
- Permissions
- Using templates
- Create issue from template
- Create issue structures
- Apply template to existing issue
- Recreate issue
- Use template custom field on issue create screen
- Default templates
- Direct link
- JQL searchers
- Variables
- Static variables
- Dynamic variables
- Smart defaults
- Basics
- Smart issues
- Smart users
- Smart dates
- Smart project
- How to use smart defaults
- App Integrations
- Team-managed projects
- Jira Software
- Jira Service Management
- Advanced Roadmaps
- Issue Checklist for Jira
- Advanced
- Automation
- Legacy automation action
- REST API
- Create issue and apply template with Jira REST API
- Security
- Security statement
- App permissions
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
.