Is it possible to query by Boolean properties in Spring Data JPA without using method parameters?
Basically I would like this to work without using custom @Query ann
The @Query anotation can even be skipped. So it should just work just like this:
@Query
public Iterable findByEnabledTrue();