I've noticed that the delete method of the GenericService as shown in the Neo4j OGM docs, http://neo4j.com/docs/ogm/java/stable/ returns void. It is the same for the various delete methods of the CrudRepository of SDN (http://docs.spring.io/spring-data/data-neo4j/docs/4.0.0.RELEASE/api/). Even the session.delete method returns a void.
Why is it so? Won't a return type of int (as to how many nodes were deleted) or a boolean (specifying if the delete operation succeeded or not) would've been better?