Not able to import org.springframework.data.neo4j.conversion.Result.
I have code like - Result<Map<String, Object>> result = template.query(matchQuery, null);
Please let me know if api is deprecated/it name got changed in 4.0.0.RELEASE version. If i cant use org.springframework.data.neo4j.conversion.Result then what i have to use instead of this.
Asked
Active
Viewed 72 times
0

RCS
- 1,370
- 11
- 27
1 Answers
1
org.neo4j.ogm.model.Result
is the class to use in SDN 4.
BTW, SDN 4.1.1.RELEASE
is just out, it would be better to upgrade to that instead,

Luanne
- 19,145
- 1
- 39
- 51
-
Thanks Luanne, will try that. – RCS Apr 10 '16 at 12:11