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.

Krishna1
Node
since ‎01-12-2023
‎01-30-2023

User Statistics

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

User Activity

need to create node for all blank key properties but properties might add in near future query I am using: match (cus:Customer) where con.name is null and con.add is null and con.id is null with cus merge (c:child) with cus,c merge (c)-[:HAS_CONSUMER...
Need to check where condition properties (u.id = c.id or u.name = c.name or u.add = lc.add) dynamically as the number properties will increase in future. lets say I want to accommodate another attribute status I need check that condition also  along ...
:param node_id : 'id' with $node_id as par match (u:User) where u[par] is not null with u,par with apoc.map.fromLists( [par], [u[par]] ) AS output CALL apoc.merge.node( ["child"], output ) yield node return node   I want to make the above script run ...
:param prameter=> 'name'; with $prameter as parmatch (u:user) where con[par] is not null with u,parmerge (d:details {par:u[par]}) return d -- the above one is neo4j considering "merge (d:details {par" <- par as a property name but I want to pass name...
how to use apoc.periodic.iterate inside foreach in neo4j
Kudos given to