JQL Functions
Function | Example | Description |
---|---|---|
issue in versionMatches(version name) | issue in versionMatches("crm") | Returns the issues where fields FixVersion/s or AffectVersion/s contain 'crm'. |
issue in NumberOfIssuesMoreEq(JQL, num) | issue in NumberOfIssuesMoreEq("type = Bug", "7") | Returns the issues by JQL in quotes only if their number exceeds the specified limit. |
issue in LinkedIssuesByJQL (JQL, link type name) | issue in LinkedIssuesByJQL ("type = Epic and Status != Closed", "is caused by") | Returns issues linked by the specified link type (this argument is optional) with issues that correspond to JQL. |