I've been using the following query to find any active tickets with over 20 "watchers":
category in (DevOps,ProdDev) AND issuetype = "Customer Issue" AND NOT status in (Closed, Canceled, "Ready for Release", Done) AND watchers >= 20 ORDER BY watchers DESC, created DESC
I'd like to be able to do something similar to find any ticket with a certain number of linked issues (specifically "is a fix for"). My goal is to quickly locate those tickets that would have the largest impact if resolved.
I'm new at this, and not sure if this is possible, apologies if this is covered elsewhere but everything I found was about finding tickets linked to a specific issue as opposed to finding any ticket with over a certain number of linked issues.