Open gomezAlvaro opened 2 years ago
I'd love to give this feature a very big thumb up.
This seems like an issue for the spring-data-commons repo where the RevisionRepository
is defined. After the methods have been added to the interface, implementation classes can be updated.
Hello,
Currently there's no way to get all the revisions for a given class, you always have to pass the
ID
as a parameter.This makes it harder to retrieve information on records that have already been deleted (you cannot search for the revision information as you don't have the
ID
anymore.Ideally we would have two additional methods in
RevisionRepository
:findAllRevisions()
andfindAllRevisions(Pageable pageable)
What do you think?
Thanks