Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
03-09-2019 07:06 PM
I need to get value from path that I will use one of the properti from the relations, so I use extract to do it. The cypher runs good when I try in the neo4j browser.
I use record.get("params").asString();
also i try ti use asPath().toString();
But, it is getting error when I run it in my java (Android). This is the error like this:
org.neo4j.driver.v1.exceptions.value.Uncoercible: Cannot coerce LIST OF ANY? to Java String.
How to get the value..? thanks.
Solved! Go to Solution.
03-11-2019 01:05 AM
Sorry, because I can't delete my own question, and this problem can be resolved, then I answer it myself.
just use
record.get("params").asObject().toString();
because the return value is as object.
03-11-2019 01:05 AM
Sorry, because I can't delete my own question, and this problem can be resolved, then I answer it myself.
just use
record.get("params").asObject().toString();
because the return value is as object.
All the sessions of the conference are now available online