Hi,
Querying database immediately after calling "GraphRepository.deleteAll" seems to return positive. Any suggestions why this could be failing? Perhaps this is a bug?
Spring Data Neo4j Version = 3.3.0.RELEASE
Neo4j Community Version = 2.0.2
Test Case
@Test
public void testDeleteAll() {
accountService.deleteAll();
Set<Long> ids = AppUtil.newHashSetInstance();
ids.add(new Long(1));
Set<AccountGraph> all = accountService.findAllAccountWithIds(ids);
for(AccountGraph graph: all){
System.out.println(graph);
}
assertEquals(0,all.size()); <-- this fails
}