简体   繁体   English

JQL,以获取特定冲刺范围之间记录的所有JIRA问题

[英]JQL to get all JIRA issues logged in between specific sprint range

I need to export all issues from Sprint 25-50. 我需要从Sprint 25-50导出所有问题。 I couldn't find any filter in JIRA to do that. 我在JIRA中找不到任何过滤器来做到这一点。

Which JQL (jira query language)query I can write to do this? 我可以编写哪种JQL(jira查询语言)查询来做到这一点?

Reference: https://confluence.atlassian.com/jiracore/blog/2015/07/search-jira-like-a-boss-with-jql 参考: https : //confluence.atlassian.com/jiracore/blog/2015/07/search-jira-like-a-boss-with-jql

You can use a similar JQL as mentioned below: 您可以使用类似的JQL,如下所述:

project = YOUR_PROJECT_NAME and cf[11901] in("Sprint 25-50") 项目= YOUR_PROJECT_NAME和cf [11901] in(“ Sprint 25-50”)

cf[11901] is a custom field name for Sprint , so the custom field name might be different to your JIRA instance. cf [11901]是Sprint的自定义字段名称,因此该自定义字段名称可能与JIRA实例不同。 But you should be able to get the custom field name while typing Sprint in JQL query search box(note that your Admin should have enabled "JQL Auto-complete" feature ON). 但是,您应该能够在JQL查询搜索框中键入Sprint获得自定义字段名称(请注意,您的管理员应启用“ JQL自动完成”功能为开)。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM