How do I search(JQL) for LinkedIssues 'contains' status in a ticket?

Kristof April 6, 2016

I have a workorder ticket which is linked to another ticket.
Linked as ' contains ' (see picture)

linkedissue.png

For example Ticket 1 contains Ticket 2.  

What I'm trying to do is setting up a filter doing this:

Project = MAGIC AND status != closed AND type != Epic AND issueFunction in linkedIssuesOf("type = 'Test Ticket' AND Status = Closed")

I want all NONE-CLOSED  - NONE-EPIC tickets (type) from the project MAGIC, which have an issue linked (with the contains LinkIssue status) that is from the type ' Test Ticket ' and the status of that test ticket must be closed. 

 

 

1 answer

1 accepted

1 vote
Answer accepted
Nicolas Bourdages
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
April 6, 2016

You almost had it. You can simply specify the link type as another argument in the linkedIssuesOf() function.

linkedIssuesOf("type = 'Test Ticket' AND Status = Closed","contains")

There are other examples in the ScriptRunner doc.

Suggest an answer

Log in or Sign up to answer