Skip to end of banner
Go to start of banner

Links

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Current »

Retrieves issues that are linked to the issues resulting from a specified JQL subquery, with an optional link type.

Examples:

  • issue in linkedIssuesOfQuery("project=ACME", "is blocked by") finds issues that the ACME project is blocked by.

  • issue in linkedIssuesOfQuery("project=ACME", "blocks") finds issues that the ACME project is blocking.

  • issue in linkedIssuesOfQuery("type=Epic AND status='To Do'") retrieves issues linked in any way to epics that are in progress.

Searches for issues with a specific number of links.

Example:

  • linksCount > 0 finds issues that have one or more links.

Finds issues that are linked by particular issues.

Example:

  • linkedBy in (WERARE-1, WERARE-2) retrieves issues that were linked by issues WERARE-1 or WERARE-2.

Searches for issues that have links to specific issues.

Example:

  • linksIssue in (WERARE-1, WERARE-2) finds issues that link to issues WERARE-1 or WERARE-2.

Searches for issues that have a particular link type.

Example:

  • linkType = "is duplicated by" finds all issues that are duplicated by another issue.

Finds issues that are linked to or linked by issues with a particular status.

Example:

  • linkedIssueStatus = "To Do" retrieves all issues that are linked by issues in the “To Do” status.

Searches for issues that are linked to or linked by issues in a specific status category.

Example:

  • linkedIssueStatusCategory = Done finds all issues that are linked to or linked by issues in the “Done” status category.

Finds issues that are linked to or linked by issues of a particular issue type.

Example:

  • linkedIssueType = Bug retrieves all issues that are linked to or linked by bugs.

linkedIssuePriority

Searches for issues that are linked to or linked by issues with a specific priority.

Example:

  • linkedIssuePriority = "High" finds all issues that are linked to or linked by high-priority issues.

Searches for issues that link to a specific number of issues.

Example:

  • linksIssuesCount > 5 finds issues that link to more than five other issues.

Finds issues that are linked by a certain number of issues.

Example:

  • linkedByIssuesCount > 10 retrieves issues that are linked by more than ten issues.

Searches for issues that are linked by issues from a particular project.

Example:

  • linkedByIssueProject = WERARE finds all issues that are linked by issues from the project WERARE.

Finds issues that link to issues from a specific project.

Example:

  • linksIssueProject = WERARE retrieves all issues that link to issues from the project WERARE.

  • No labels