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.
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
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.
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.