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"
)
Find issues which link at least one issue from project JQL.
issue in links(
"project = JQL"
)
You can find documentation here
@Muhammad Ramzan(Atlassian Certified Master)- I don't appear to have the same JQL options.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think you did not install the plugin that's why
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.