I'm looking to get data on top separate linked ticket types.
Played around with the following without luck. https://confluence.atlassian.com/jirasoftwarecloud/advanced-searching-functions-reference764.1565752696-1299981349.1565752696#Advancedsearching-functionsreference-linkedIssueslinkedIssues
Any help would be appreciated.
I am using JQL Search Extensions for Jira & reports to get the data with links.
you can use following queries to get the results.
following query will return all issues which have link 'relates to'
issue in linkType("relates to")
Find issues which are blocked by issues from project JQL with priority = Highest.
issue in linkedBy("is blocked by", "is related to", "project = JQL AND priority = Highest")
issue in linkedBy(
"is blocked by"
,
"is related to"
"project = JQL AND priority = Highest"
)
Find issues which link at least one issue from project JQL.
issue in links("project = JQL")
issue in links(
"project = JQL"
You can find documentation here
https://jqlsearchextensions.atlassian.net/wiki/spaces/SEARCH/pages/30497099/JQL+Reference+Server#JQLReference(Server)-LinkedIssueType
@Muhammad Ramzan_Atlassian Certified Master_- I don't appear to have the same JQL options.
I think you did not install the plugin that's why
JQL Search Extensions for Jira & reports
It looks like you're new here. Sign in or register to get started.