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.

pedrochagasjr
Node Link
since ‎03-07-2019
‎06-01-2022

User Statistics

  • 9 Posts
  • 0 Solutions
  • 1 Kudos given
  • 1 Kudos received

User Activity

Hi, I'm trying create a sub graph for specific id and later calculate pagerank: call gds.graph.create.cypher('teste','match (p)-[r]-(p2) return id(p) as id','match (p:Person{id:123456})-[r*3]-(p2) return id(p) as source, id(p2) as target') A graph ...
Hi, My neo4j db has 3 million nodes and 32 million relationships, I'm running : MATCH (p:Person{id:123})-[r*..2]-(m) WHERE NONE(x in r WHERE type(x) in ['Buyer','Seller','Owner']) RETURN p,r,m when a node has many relationships it crashes (PROFILE ...
Hi, I'm using neo4j 3.5 community edition and trying totalize and get hops from a specific node. I'm running to totalize: MATCH (p:Person{id:123})-[r]->(m) RETURN p,count(distinct(r.idSale)) as qtd,sum(r.value) as value,type(r) as type,r.seg as segm...
Hello guys, How do I get all the labels of the relationships with python neo4j-driver 1.7.6, I'm using query = (MATCH (n)-[r]-(m) WHERE n.doc = '1234' RETURN r ) My database got many relationships for a node (Ex: [:Buyer], [:Seller], [:Owner] ... ) b...
Kudos from
Kudos given to