Is there a way to apply a default filter/predicate on all queries that are generated by a JpaRepository, to automatically restrict the results. For example, if I implement a soft-delete flag, I want to automatically exclude those results from all further selects.
Hibernate is the JPA implementation beneath, if that helps.