简体   繁体   中英

JIRA JQL Issues created between 5pm and midnight for an entire month

Does anyone know how to filter issues in a given project to show only issues that were created between 5pm and midnight for an entire month?

I am able to constrain between 5pm and midnight on a single day as below but am unsure how to make it do the whole month:

project = CI AND issuetype = "Activity" AND (created >= endOfDay('-1860m') AND created <= endOfDay(-1440m))

Had to write a JQL function using the GroovyRunner plugin in JIRA. Am having some performance issues which I will put in another StackOverflow question

EDIT: Performance issue post available here: https://stackoverflow.com/questions/18606967/jira-jql-performance-issue-with-custom-function-in-groovyrunner

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