我有来自其他用户的已保存查询,显示了我们开发人员的所有打开的门票.
我想要做的是过滤此查询以获取我的门票:
ticket in (other query) and assignee = currentUser()
Run Code Online (Sandbox Code Playgroud)
在JQL中是否可以这样?
Kuf*_*Kuf 42
使用AND与其他JQL查询在一起,例如,如果原始查询:
project = Development and status = open
Run Code Online (Sandbox Code Playgroud)
现在您希望选择属于您的问题:
project = Development and status = open and assignee = currentUser()
Run Code Online (Sandbox Code Playgroud)
如果保存了其他查询,则可以使用过滤器名称:
filter = "Dev open issues" and assignee = currentUser()
Run Code Online (Sandbox Code Playgroud)
或者通过过滤ID:
filter = "10302" and assignee = currentUser()
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
17509 次 |
| 最近记录: |