简体   繁体   中英

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

I need to export all issues from Sprint 25-50. I couldn't find any filter in JIRA to do that.

Which JQL (jira query language)query I can write to do this?

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

You can use a similar JQL as mentioned below:

project = YOUR_PROJECT_NAME and 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. 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).

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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