This site is moving soon to become part of an integrated Appfire documentation and information site for our apps. This site will remain available during the transition to our new and improved site. Once this site is moved over, this banner will be updated with the new site link for easy access.
Take a look here! If you have any questions please email support@appfire.com
Field Comparisons JQL Functions
Try it free: ☁Cloud 🖥Data Center
The instructions on this page describe how to execute a JQL search using JQL Search Extensions.
Field Comparisons JQL functions
JQL functions are accessible from Extended Search screen or via Extended Search filters in Jira advanced search.
DateCompare()
Find issues with dates matching an expression.
Expression consists of 2 date fields connected with a comparision operator: <, <=, >, >=, =
issue in dateCompare("duedate < resolved")
issue in dateCompare("'Target date' >= 'Start date'")
DateCompareIgnoreTime()
Find issues with dates matching an expression. This function takes into account only the date part of the timestamps.
Expression consists of 2 date fields connected with a comparision operator: <, <=, >, >=, =
issue in dateCompareIgnoreTime("duedate < resolved")
issue in dateCompareIgnoreTime("'Target date' >= 'Start date'")
Field Comparisons JQL Aliases
HasSameUpdatedAndCreatedDate
Search for issues which were not updated since creation
SUPPORTED OPERATORS
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
EXAMPLES
hasSameUpdatedAndCreatedDate = "true"
HasSameAssigneeAndReporter
Search for issues with the same assignee and reporter
SUPPORTED OPERATORS
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
EXAMPLES
hasSameAssigneeAndReporter = "true"
HasSameVersions
Search for issues with the same fix and affected versions.
SUPPORTED OPERATORS
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
EXAMPLES
hasSameVersions = "true"