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.

deepak
Node Clone
since ‎06-06-2020

User Statistics

  • 20 Posts
  • 0 Solutions
  • 8 Kudos given
  • 0 Kudos received

User Activity

This has been asked before. I am just checking if we found a better way since this was posted: https://community.neo4j.com/t5/neo4j-graph-platform/get-count-before-limit/td-p/38055 https://stackoverflow.com/questions/44478680/getting-results-count-fr...
I am using the cloneNodes procedure for cloning a node with relationships: apoc.refactor.cloneNodes(nodes :: LIST? OF NODE?, withRelationships = false :: BOOLEAN?, skipProperties = [] :: LIST? OF STRING?) This procedure accept properties that can be ...
I need some help figuring out if my use-case requires atomic updates (using APOC) or a property setter is enough. My doubt arises because all the write queries in my Java WebApp use an auto-commit transaction with no retries. I have a node that keeps...
In the following example: CREATE (:A)-[:AB{list:['k1:v1', 'k2:v2']}]->(:B) CREATE (:A)-[:AB{list:['k2:v2']}]->(:B) To find path with AB.list having an element k1:v1, I can use the following query: WITH 'k1:v1' AS query MATCH path = (:A)-[ab:AB]->(:B...
I am working on some conditional queries and looking for some guidance over recommended practices. Can this query be optimized further? I am using version 4.2.1. EDIT: Please note, the query needs to return the result of each branch. In my case, auth...