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.

rounakshrestha1
Node Link
since ‎01-15-2021
‎06-01-2022

User Statistics

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

User Activity

I have added constraints in a node such that the id is unique and uuid is added automatically but when I create a node, the id is returned null and when I again query for the node I can see the uuid this time. I assume it takes time for neo4j to crea...
match (a:User {name: "Some Name"}), (b)<-[:rel1]-(a), (c)<-[:rel2]-(a) return a.id as id, a.name as name, collect(apoc.map.fromValues(["key1", b.value1, "key2", b.value2])) as aray, collect (c.prop) as property for the last 2 collect(), I get the sam...
match (a:User {name: "HakumanaTata"}) ,(a)<-[f:Follows]-(:User) ,(a)-[F:Follows]->(:User) return count(f) as Followers, count(F) as Following This returns nothing. Also, which is faster, counting relationships or counting nodes?
I am trying to create a relation at the same time I create a node. I am using javascript neo4j driver. When I run the query in neo4j desktop it works but not when using the driver. session.run(` match (a:Node1) where a.name ...