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?
Hi Martina,
Have you ever tried JQL Booster Pack? It includes a few jql functions related to relationships:
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
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
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.