public interface HistoryEntryRepository extends org.springframework.data.repository.CrudRepository<HistoryEntry,java.lang.String>
| Modifier and Type | Method and Description |
|---|---|
void |
deleteBy(Document document) |
java.util.List<HistoryEntry> |
findBy(Document document) |
@Query(value="select h from HistoryEntry h where h.document = ?1") java.util.List<HistoryEntry> findBy(Document document)
@Modifying @Query(value="delete from HistoryEntry h where h.document = ?1") void deleteBy(Document document)