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.

tarendran_vivek
Graph Voyager
since ‎04-19-2020
‎06-01-2022

User Statistics

  • 135 Posts
  • 3 Solutions
  • 32 Kudos given
  • 18 Kudos received

User Activity

Hi all, I am trying to batch delete a series of nodes. This node i am deleting is connected to another node that are connected back to other nodes with the same label. I have a logic that checks if this connected node I am deleteing is connected to a...
Hi everyone, I am bringing back this age old question for neo4j. I understand topic has been covered before in this article however this was done in 2015 and the updated version on the neo4j community was done in 2019 before the neo4j 4.0 release. I ...
Hi all, I am trying to figure out exactly why there is a difference when returning in a node by itself vs returning all properties from a map projection. Example: a) PROFILE MATCH (g:Group) OPTIONAL MATCH (g)-[:GROUPS]->(u) RETURN {group: g, user: co...
Hi all, I am trying to save a some scripts in my neo4j browser (using version 4.1 and on firefox). However, after I have saved it and reload the page to check it has been saved the script is missing. I already have quite a few scripts saved and am wo...
Hi all, I am trying to map the results of my match when there are 2 different searches into 1. I added my code below UNWIND $data AS row OPTIONAL MATCH (a:NodeA) WHERE a.id = row.id OPTIONAL MATCH (a)-[:REL_2]->(c1:NodeC) WITH a, collect(c1) AS lista...