Hi there,
I am using JIRA 6.3 and have a question regarding JQL Queries.
Is it possible to build upon this query :
issue in linkedIssues(ABC-
123
)
which displays all the issues linked to a single issue?
What I would like to do is essentially pass in mutiple issue keys instead of one which are based on a separate query. So, what im looking for is something like :
issue in linkedIssues(<subquery>)
Can this be done somehow?
Created a filter to retrieve a list of issues containing issue links and called this X.
Used this filter to get all linked issues and filtered out like this:
issuefunction in linkedIssuesOf('filter = X') AND issuetype in (Bug)
I did'nt realise you could supply the linkedIssueOf() function with a filter until now.
Thank you all for the help.
issuefunction is not a variable that I'm seeing available.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This can be simplifies to
issueFunction in linkedIssuesOf("issue =TICKETID-1")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, this is possible if Script Runner is installed. You can use something like
issueFunction in linkedIssuesOf("status = Open", "blocks") and resolution is empty
This is like issueFunction in linkedIssuesOf(<subquery>,<link type>) and <more filtering of the results>
See more info here: https://jamieechlin.atlassian.net/wiki/display/GRV/Scripted+JQL+Functions#ScriptedJQLFunctions-IssueLinks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The second argument is optional, if omitted it will show issues linked with any link type.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
So I have a list of issues of type "Improvement" and want to find all issues linked of type "Bug" Can I combine the default JQL with scriptrunner functions like this: issuetype = Improvement AND fixVersion = X AND project in (A,B,C) AND issueFunction in linkedIssuesOf("issuetype = Bug")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can. Just make sure that if you are using linkedIssuesOf you specify link type (inward or outward). Possible values are: blocks, is blocked by, clones, is cloned by, duplicates, is duplicated by, is Epic of, has Epic, relates to.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Peter, I don't really care about the link type. I want to get all linked issues like Jamie mentioned above. Just need to make sure i'm selecting issues of type "Improvement" and within these, get all issuslinks of type "Bug" only.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have a filter called 'JK' getting all issues for a certain fix version and issue type and stored this in a filter. Something like this: issuefunction in subtasksOf("filter = 'JK'") and issuetype in ("Bug") subtasksOf(filter) looks at all the sub-tasks as opposed to the issues linked to a certain issue. It would be ideal if I could return all linked issues based on a filter.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
issueFunction in linkedIssuesOf('filter = "JK"') and issuetype = "Bug" ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
is there any work around for the query to "get the list of issues which has linked issues" with out using issuefunction ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Not to resurrect and old thread, but this might be a good solution for people still searching:
criteria=mycriteria and issueLinkType is not empty
This should produce a list of issues that meet mycriteria that *are* linked to other issues.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is “criteria” a JQL syntax?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sadly issueLinkType doesn't support is not operator, and i think it never has.
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.
@Vanessa McGonigle Won't it show issues without any linking also? Can you share full query which you tried?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It seems the query I used for my own jira instance allows issueLinkType is not EMPTY
Maybe atlassian updated the function?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi ,
You can try a free plugin I've made: Easy Links for JIRA. It provides two new custom field types: Single Issue Link Picker and Multiple Issue Link Picker. These custom fields are displayed as dropdown select lists, which you can filter and autocomplete by typing on it (see screenshots). Also, you can configure the customfields to restrict the available issues to select (using a JQL expression when creating the custom field), and the link type that the field will be associated to. When you select a value, a new issue link is created between the current issue and the selected one(s), that you can manage as a regular issue link.
In addition, you can use the custom field in JQL queries (for example: "Blocking Task" = TEST-123), and in dashboard gadgets (pie charts, filters, etc).
I hope it can solve your issue,
greetings!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
How can I get the list of tickets which have some linked issues?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
As Answered by Peter B , its like this issueFunction in linkedIssuesOf(<subquery>,<link type>) and <more filtering of the results>
Eg :
issueFunction in linkedIssuesOf("status = Open", "blocks") and resolution is empty
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.