how to create a transformation filter to look for issues without specific link type, like "resolveby

Sam October 12, 2022

I have a structure view of a bunch of issues.

I want to add a transformation filter to identify stories that have not been broken down with BLIs yet, I am looking at JQL to create such transformation filter to look for issues that has no "resolve-by" link e.g.

2 answers

1 vote
David Niro
Atlassian Partner
October 17, 2022

Hello @Sam ,

If I understand correctly, you have an issueLinkType "resolve-by" and you would like to use a Quick Filter that returns only issues that do not have this issueLinkType.

This should be possible, but due to some behavior related to issueLinkType and != or NOT IN operators, we need to first create a filter.

Your filter will be something like:

issueLinkType = "resolve-by"

You can then add a Quick Filter to your structure that will look like:

filter != "your_filter_name"

Please let me know if this helps.

Best,
David

0 votes
Mark Segall
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
October 12, 2022

Hi @Sam 

I don't use structure, but how about this?

issueIsResolvedBy = NULL

NOTE - Resolved by is not a native link type so I'm assuming that's how it's configured. 

Sam October 14, 2022

this does not seem to be available in the Structure transformation filtering.

Suggest an answer

Log in or Sign up to answer