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.

halloleo
Node Link
since ‎11-17-2021
‎06-01-2022

User Statistics

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

User Activity

In the Neo4j browser I can easily show all relationships: MATCH p=()-[r]->() RETURN p Plus I can easily show some particularly interesting relationship(s): MATCH p=(n)-[r]->() WHERE n.relevance > 10 RETURN p But how can I combine these two: How can...
In a smallish database I try to add to a node a degree property (how many relationships go out from this node). I tried the following query: MATCH (p)-[r]->(x) WHERE p.id = "42" SET p.degree = count(r); The WHERE clause WHERE p.id = "42" full define...
Hi there I'm just starting out to do a bit more with neo4j and I try to represent a truly bi-directional realtionship. I know neo4j cannot store un-directional relationships ((a)--(b)), which would be an option. And I didn't manage to create bidirect...
Kudos given to