Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Plugin filter for Issue

Marina Bernardin December 10, 2019

Hello 

I am using Jira Core 7.12.3 and I am looking for the plugin which will allow me to filter linked issue. At the moment my filter is limited to -> "Filter by key or summary".

I need more choise. Is anybody can help with info?Capture.PNG

 

3 answers

2 votes
Jack Nolddor _Sweet Bananas_
Atlassian Partner
December 10, 2019

Hi Martina,

 

Have you ever tried JQL Booster Pack? It includes a few jql functions related to relationships:

  1. linkedIssuesOf()
  2. parentsOf()
  3. subtasksOf()
  4. epicsOf()
  5. issuesInEpics()
  6. portfolioChildOf()
  7. portfolioParentOf()

 

You can create some complex queries, such as:

• Find issues linked to 'Open' Bugs:

issue IN linkedIssuesOf("type = Bug AND status = Open")

• Find issues which any of their subtasks are 'Open'

issue IN parentsOf("status = Open")

• Find issues within Epics from the EMEA project that indeed belong to another project

issue IN issuesInEpics("project = EMEA") AND project != EMEA

 

References:

 

Hope this answer helps you to fit your needs,

Regards

0 votes
Marina Bernardin December 10, 2019

I have that as an error

 

....     /rest/plugins/1.0/org.craftforge.jira.craftforge-jql-functions-plugin-key [c.a.p.osgi.factory.OsgiPlugin] Unable to start the plugin container for plugin 'org.craftforge.jira.craftforge-jql-functions-plugin'
java.lang.NoClassDefFoundError: org/apache/lucene/search/SimpleCollector

0 votes
Pete Singleton
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.
December 10, 2019

Have a look at this app, very useful I find: 

https://marketplace.atlassian.com/apps/31601/search-linked-issues

You can do extended JQL queries based on linked issues, and also create custom fields to show specific link types.

Suggest an answer

Log in or Sign up to answer