I need help building 2 queries:
- Find parent-level work items where
- Parent-Level work item is not Done (statusCategory != Done) AND
- All sub-task work items are Done (statusCategory = Done)
- Find all sub-task level work items where
- Parent-Level work item is Done (statusCategory = Done) AND
- All sub-task work items are not Done (statusCategory != Done)
Ideally, I'd like to only use natively available JQL so I can use these queries to build filters/dashboards.