...
Note |
---|
Automating high volume queries may result in performance degradation of your Jira instance. It is recommend that the StatusWas JQL statements are used ad-hoc, and not for automation or high-volume workflow actions. |
timeWithin
timeBeyond
|
Items | Explanation |
---|---|
timeWithintimeBeyond | Return all the issues whose sum of time spent in certain statuses is less greater than or equal to "Time_Frame"
|
JQL Context | issue in/not in |
Time_Frame | Time frame can be w, d, h, m, s and separated by spaces.
Example: "1w 2d 3h 4m 5s" |
status_A&B&C | Support all Jira workflow statuses |
JQL Example | issue in timeBeyond("1d 2h 30s", "Open") |
timeWithin
|
Items | Explanation |
---|---|
timeWithin | Return all the issues whose sum of time spent in certain statuses is greater less than or equal to "Time_Frame"
|
JQL Context | issue in/not in |
Time_Frame | Time frame can be w, d, h, m, s and separated by spaces.
Example: "1w 2d 3h 4m 5s" |
status_A&B&C | Support all Jira workflow statuses |
JQL Example | issue in timeWithin("1h", "In Progress")issue in timeBeyond("1d 2h 30s", "Open") |