Hey!
For a customer I need to rebuild a JQL filter, that should only show Changes and Bugs if the parent of their parent is not of the issueType "Story".
Is there any possibility to create such a filter not using third party apps?
The type of the grandparent is not directly available in JQL.
A common approach of these type of problems is the following:
After this, you can use your custom field intuitively in JQL queries:
type and (Change,Bug) and "Grandparent type" != "Story"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.