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.

ashifshereef2k
Node
since ‎04-27-2020
‎06-01-2022

User Statistics

  • 14 Posts
  • 0 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

I have a binary tree structure that I am using to find the aggregate sum of values stored in each node. I achieve it as follows. MATCH (d1:Distributor)-[*]->(d2:Distributor) with d1, sum (d2.counter) AS tot_counter RETURN d1.cid, tot_counter There ...
I have a binary tree representation in the database: Each node has two outgoing connections, LEFT and RIGHT. The following query fetches the tree up to a depth of 15. MATCH path = (d1:Distributor)-[*0..15]->(d2:Distributor) WHERE d1.dist_id = '1' RET...
Greetings, I have a tree structure maintained in a Mysql table in the following format. Id | left_id | right_id As evident from the simple form, this is a binary tree structure maintained in a relational table. At the time of querying, a CTE self-re...
Hello, I am testing out a POC in neo4j to see if it would fit my use. So far so good. I am trying to build a sales engine that stores the sellers in the form of a binary tree as in the figure: The each node has a LEFT and RIGHT relationship. Given a...
I was looking at the MLM engine described in the link: https://neo4j.com/blog/multi-level-marketing-world-of-warcraft-neo4j/ I am trying to build an engine like this. The tree is mostly binary and I am new to graph technologies. I am trying to change...