Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个问题,我需要为包含多个史诗的大型功能生成仪表板。我希望能够在包含功能名称的任何史诗下搜索所有故事,甚至可能是技术任务,并在搜索中返回它。有没有办法用 Jira 的 JQL 做到这一点?
遗憾的是,您不能在 JQL 中将字段引用为值或函数。
如果您执行类似的操作description ~ summary,它会抛出错误,或者自动将其引用为description ~ "summary"并搜索字符串文字“summary”。
description ~ summary
description ~ "summary"