I'm trying to find a way through JQL (and possibly with the help of ScriptRunner and/or JQL Tricks) where, for example, the filter would return all issues in a project where no "is blocked by" issue that has been linked has been updated over a certain time frame (i.e. 1 week).
Say issue EXAMPLE-123 has 3 "is blocked by" links. If those 3 issues all haven't been updated in a week, the filter would return EXAMPLE-123 in the query. The filter I am looking for would return all issues that meet this criteria.
My starting point so far is the following query that I have tried through JQL Tricks, but it's doesn't seem to be working:
issue in linkedIssuesInQuery("updated <= -1w","is blocked by")