问题描述
我想创建一个在Web界面中处于活动状态的常规查询,该查询为当前选定的项目选择所有问题.
I would like to create a general query that is active in the web interface that selects all issues for the currently selected project.
例如,如果我有两个项目
For example if I have two projects
- PROJ1
- PROJ2
为PROJ1选择所有问题,我将创建一个查询
to select all issues for PROJ1 I would create a query
Project = PROJ1
但是,如果我有多个项目,则需要创建特定于该特定项目的查询.
However, if I have a multitude of projects I need to create a query specific to that particular project.
我想做的是创建一个查询,例如
What I would like to do is create a query such as
Project = CurrentProject
是否存在允许我执行此类操作的查询语法?
Is there a query syntax that allows me to do such a thing?
推荐答案
据我所知,创建JQL currentProject()函数问题仍未解决.
As far as I know, the Create JQL currentProject() function issue is still unresolved.
但是,在MarketPlace上存在 CurrentProjectFunction 插件,该插件可为您提供以下功能在JQL中:
However there exists CurrentProjectFunction plugin on MarketPlace which gives you following ability in JQL:
project = currentProject()
这篇关于查询Jira中当前活动项目的所有问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!