neo4j - Error when creating geo lat/long properties with cypher -
i started researching use of neo4j
in proof of concept may newbie question:
it seems can't create string property decimal point in cypher. using neo4j 2.0.0-m03
, cypher code is:
create (n:location { id: "102", geo_lat: "34.058349609375", geo_long: "-118.244186401367", lang: "en", title: "los angeles" } );
the response is:
==> unrecognized option '1'
am doing wrong or string point not string in neo4j/java
?
Comments
Post a Comment