Open
Description
Hello,
Using Spring data neo4j 7.2.1
having the configuration : withDialect(Dialect.NEO4J_5)
the built in method from repository
ArisClass findAllById(Iterable iterable);
return the correct answer,
but
Collection findAllById(Iterable iterable, Class type);
return always an empty collection with the log : The query used a deprecated function: id
.
whatever I put for the type , it happend with a projection as with the domain class.
regards