...
Table of Contents | ||
---|---|---|
|
...
datesBeyond
Code Block |
---|
datesBeyond("Time_Frame", "Date_Field_Name_1", "Date_Field_Name_2") |
Items | Explanation |
---|---|
datesBeyond | Return all the issues whose time difference between "Date_Field_Name_1" and "Date_Field_Name_2" is greater than or equal to "Time_Frame" |
JQL Context | issue in/not in |
Time_Frame | Time frame can be w, d, h, m and separated by spaces.
Example: "1w 2d 3h 4m" |
Date_Field_Name_1&2 | Supports
and any other Date Picker custom fields |
JQL Example | issue in dateTimeWithin("3d 8h", "created", "updated") |
datesWithin
Code Block |
---|
datesWithin("Time_Frame", "Date_Field_Name_1", "Date_Field_Name_2") |
Items | Explanation |
---|---|
datesWithin | Return all the issues whose time difference between "Date_Field_Name_1" and "Date_Field_Name_2" is less than or equal to "Time_Frame" |
JQL Context | issue in/not in |
Time_Frame | Time frame can be w, d, h, m and separated by spaces.
Example: "1w 2d 3h 4m" |
Date_Field_Name_1&2 | Supports
and any other Date Picker custom fields |
JQL Example | issue in dateTimeWithin("3d 8h", "created", "updated") |
dateTimeBeyond
Code Block |
---|
dateTimeBeyond("Time_Frame", "DateTime_Field_Name_1", "DateTime_Field_Name_2") |
Items | Explanation |
---|---|
dateTimeBeyond | Return all the issues whose time difference between "DateTime_Field_Name_1" and "DateTime_Field_Name_2" is greater than or equal to "Time_Frame" |
JQL Context | issue in/not in |
Time_Frame | Time frame can be w, d, h, m and separated by spaces.
Example: "1w 2d 3h 4m" |
DateTime_Field_Name_1&2 | Supports
and any other DateTime Picker custom fields |
JQL Example | issue in dateTimeWithin("3d 8h", "created", "updated") |
dateTimeWithin
Code Block |
---|
dateTimeWithin("Time_Frame", "DateTime_Field_Name_1", "DateTime_Field_Name_2") |
Items | Explanation |
---|---|
dateTimeWithin | Return all the issues whose time difference between "DateTime_Field_Name_1" and "DateTime_Field_Name_2" is less than or equal to "Time_Frame" |
JQL Context | issue in/not in |
Time_Frame | Time frame can be w, d, h, m and separated by spaces.
Example: "1w 2d 3h 4m" |
DateTime_Field_Name_1&2 | Supports
and any other DateTime Picker custom fields |
JQL Example | issue in dateTimeWithin("3d 8h", "created", "updated") |
epicTree
|
Items | Explanation |
---|---|
epicTree | Return all epics with those given epic issue keys, all issues linked to those epics and all sub-tasks of those issues linked to the epics
|
JQL Context | issue in/not in |
Arg: Epic_Issue_Key_N | Support all Jira Epic issue keys |
JQL Example | issue in epicTree("Data Storage", "System Config", "Security") |
FieldValueMatches
|
...
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. |
...
...
datesWithin("Time_Frame", "Date_Field_Name_1", "Date_Field_Name_2")
datesBeyond("Time_Frame", "Date_Field_Name_1", "Date_Field_Name_2")
dateTimeWithin("Time_Frame", "DateTime_Field_Name_1", "DateTime_Field_Name_2")
dateTimeBeyond("Time_Frame", "DateTime_Field_Name_1", "DateTime_Field_Name_2")
datesWithin
datesBeyond
dateTimeWithin
dateTimeBeyond
Items | Explanation |
---|---|
datesWithin | Return all the issues whose time difference between "Date_Field_Name_1" and "Date_Field_Name_2" is less than or equal to "Time_Frame" |
datesBeyond | Return all the issues whose time difference between "Date_Field_Name_1" and "Date_Field_Name_2" is greater than or equal to "Time_Frame" |
dateTimeWithin | Return all the issues whose time difference between "DateTime_Field_Name_1" and "DateTime_Field_Name_2" is less than or equal to "Time_Frame" |
dateTimeBeyond | Return all the issues whose time difference between "DateTime_Field_Name_1" and "DateTime_Field_Name_2" is greater than or equal to "Time_Frame" |
JQL Context | issue in/not in |
Time_Frame | Time frame can be w, d, h, m and separated by spaces.
Example: "1w 2d 3h 4m" |
Date_Field_Name_1&2 | Supports
and any other Date Picker custom fields |
DateTime_Field_Name_1&2 | Supports
and any other DateTime Picker custom fields |
JQL Example | issue in dateTimeWithin("3d 8h", "created", "updated") |
issueLinkType
|
...
Items | Explanation |
---|---|
timeWithin | Return all the issues whose sum of time spent in certain statuses is less than or equal to "Time_Frame"
|
timeBeyond | Return all the issues whose sum of time spent in certain statuses is 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 | |
Items | Explanation |
epicTree | Return all epics with those given epic issue keys, all issues linked to those epics and all sub-tasks of those issues linked to the epics
|
JQL Context | issue in/not in |
Arg: Epic_Issue_Key_N | Support all Jira Epic issue keys |
JQL Example | issue in timeWithin("1h", "In Progress") issue in timeBeyond("1d 2h 30s", "Open") |
epicTree
|
issue in epicTree("Data Storage", "System Config", "Security") |