``` public interface AnotherRepository extends PagingAndSortingRepository<DataBean, Long> { DataBean findFirstByOrderByAmountDesc(); //this doesn't work, throws NPE DataBean findByTimestamp(Long timestamp); } ```