cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

MPasadu
Node Link
since ‎03-22-2019
‎06-01-2022

User Statistics

  • 10 Posts
  • 0 Solutions
  • 3 Kudos given
  • 0 Kudos received

User Activity

So I have data coming in from two different timezones. Both ISO 8601: One looks like this: "2021-02-18T01:00:00+00:00" The other like this: "2021-02-18T00:00:00+01:00" They are essentially the same. There is a Node N with a dateTime property cal...
I am playing around with the new async driver. I am reading in a multitude of paths(together with their parent path) from a directory structure. And want to represent it in neo4j using nodes (:Directory {uncPath:$path}). And they should all be connec...
Hey, what's the best way to find the last leaf node? It's for a timeline like structure where a node is added at the end. Schema looks like this: (:Node)<-[:IS_PARENT]-(:Node)<-[:IS_PARENT]-(:Node)....... So a Node will always only have one parent. I...
We are using Neo4j.Driver and the code looks like this: using (var session = driver.Session(AccessMode.Write)) { var result = [...].WriteTransaction(tx => tx.Run[...] var value1 = result.First()["value1"].As<string>(); var value2 = result.First()["va...
Is there a way to show the datatypes in the neo4j browser? If a property has a number, you can't see if it is a string or a number. Same with boolean, it just shows "PropertyName: true", and you have no idea if it is a boolean true or a string "true"...