In the app where my team works, JQL Search Extensions for Jira, you can use this query to get all issues in the sprint plus linked issues to tickets in the sprint: project = "ABC" AND Sprint in openSprints() OR issue in linkedIssuesOfQuery("project = 'ABC' AND Sprint in openSprint...
Anyway, back to what you can do with core JQL. If you want to find ALL related issues … both 'child issues' and 'linked issues', then you'll need to use a query that combines both… issue inlinkedIssues("SCR-26")orparent=SCR-26 This JQL will pick up all issues that are related...
Associations that come out-of-the-box are: blocks/is blocked by clones/is cloned by duplicates/is duplicated by relates to All linked issues will appear on each issue. This makes it easier for teams to navigate between connected work and showcase dependencies....
The advanced search allows you to build structured queries using the Jira Query Language (JQL) to search for issues. You can specify criteria that cannot be defined in the quick or basic searches.For example, you can use theORDER BYclause to sort Jira issues either in descending or ascending...
By default the linked issues are independent and status of one doesnt impact the other. However, you can customize like 'do not resolve if linked issues are not resolved..' etc using commercial plugins leslie.kneafsey September 8, 2022 What commercial plugin is that? We are looking to solve...
issueFunction in linkedIssuesOf("linkedIssueKey") ``` 这将返回具有特定链接类型的问题列表,其中"linkedIssueKey"应替换为实际的链接问题的关键字。 4.示例:查找具有某个字段值大于或等于某个特定值的问题: ``` issueFunction in expression("field_name >= value") ``` 这将返回具有特定字段值大于或等于给...
Linked issues:See linked issues and their relationship to the issue you're viewing. Created with Sketch. You can search for issues that are linked to a particular issue. SeeAdvanced searchingfor more information. Link to a web URL Give an issue context from anywhere on the web by l...
1 linkedissue = issueKey Supported fields Issue Supported operators =, != Examples Find subtasks that are linked to a particular epic: 1 linkedissue = epicKey-123 linkedIssues() Searches for issues that are linked to an issue. You can restrict the search to links of a particular type. ...
with linked issues but not linked to any of the issues you specify: issueLink not in (ABC-123, ABC-456) that block the issue ABC-123 (link type is "blocks"): issueBlocks = ABC-123 or issueLink["blocks"] = ABC-123 that are blocked by the issue ABC-123 (link type is "is block...
Usage: jql [options] [query] Options: -h, --help output usage information -c, --custom <name> Filter by custom jql saved in jira config Using jira sprint functionality, you canget issues tagged in a sprint eg. jira sprint -r YOUR_RAPIDBOARD -s STRING_TO_SEARCH_IN_SPRINT_NAME tag ...