The following code fails to correctly store the attribute dt:
graph = startGraph("http://localhost:7474/db/data/", username="neo4j", password=MYPASS)
clear(graph, input=FALSE)
t1 = createNode(graph, "testType", name="t1", dt=2015.1113, v1=1)
t2 = createNode(graph, "testType", name="t2", dt=2015.1113)
The node t1 will have dt == 2000. The node t2 will have the correct value. Does RNeo4j require special syntax for double?
Thanks