Does anyone know how to create a filter that I can apply to my kanban board that will show me only tickets that do not have any associated Idea in my product discovery ideas list? There is a parentEpic and parentProject, but I'm looking for something like 'parentIdea is EMPTY' or some equivalent.
I solved this for myself, adding it here in case anyone else can find this useful because it took me forever to get it working and was very painful having never heard of scriptrunner.
What I ended up with is a filter that shows me tickets that do not have a relationship to an idea, or have a parent that does not have a relationship to an idea. The latter half of that is important if you create an epic as a delivery ticket in an idea and then want to consider its tasks/stories/bugs as also being linked to the idea.
Some downsides:
Install:
1. Go to your board, if you're using the new UI, while in your project click on "ScriptRunner Enhanced Search" on the top nav bar, it should be on the far right.
2. Paste in the following JQL - this gives you all tickets with an idea linked
issuelinktype = "implements" OR issueFunction in subtasksOf("issuelinktype = 'implements'") OR issueFunction in issuesInEpics("issuelinktype = 'implements'")
3. Save the filter, give it a name like "tickets linked to ideas"
4. Go to your backlog, click 'Manage Quick Filters', and add this as a quick filter with the following JQL:
filter = "FILTER_NAME"
5. On the same page add a new filter called "No idea linked" Use the following JQL:
project = YOUR_PROJECT AND filter != "FILTER_NAME"
This will be used to show tickets that don't have an idea linked.
You should be able to utilize the following in your JQL:
issueLinkType != "is implemented by"
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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.