You are viewing an old version of this page. View the current version.
Compare with Current View Page History
« Previous Version 7 Next »
To search issues with repeating go to Jira issue navigator and use JQL query:
codedoers.repeating.nextOccurrenceDate is not null
Sometimes it is possible that issue with repeating has empty nextOccurrenceDate. This occurs when:
Then you can use following JQL to search all issues with repeating (including invalid rules and completed recursion):
codedoers.repeating.rule is not null
All repeatings are defined as RFC 2445 recurrence rules, for example
The rRule property can be used to search repeatings by it recurrence details
To search issues with repeating that failed during last execution go to Jira issue navigator and use JQL query:
codedoers.repeating.hasErrors = "true"
codedoers.repeating.nextOccurrenceDate is not empty
codedoers.repeating.rule is not empty
codedoers.repeating.nextOccurrenceDate > now() and codedoers.repeating.nextOccurrenceDate < endOfWeek()
codedoers.repeating.rule ~ "FREQ=MONTHLY"
codedoers.repeating.rule ~ "FREQ=DAILY"
codedoers.repeating.rule ~ "INTERVAL=5"
codedoers.repeating.rule ~ "FREQ=MONTHLY"and codedoers.repeating.rule ~ "INTERVAL=5"
codedoers.repeating.repeatedBy is not empty
codedoers.repeating.repeatedBy = "ISSUEKEY-1"
codedoers.repeating.repeatedBy = "ISSUEKEY-11" and created >= "2017-07-16 17:05"
codedoers.repeating.hasErrors is not empty
codedoers.repeating.rule
issue.property[com.codedoers.issue.recurrence].rRule
codedoers.repeating.nextOccurrenceDate
issue.property[com.codedoers.issue.recurrence].nextOccurrenceDate
codedoers.repeating.hasErrors
issue.property[com.codedoers.issue.recurrence.last].hasErrors
codedoers.repeating.repeatedBy
issue.property[com.codedoers.issue.recurrence.source].issueKey
On this page