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.

12kunal34
Graph Fellow
since ‎09-25-2018
‎12-16-2022

User Statistics

  • 201 Posts
  • 4 Solutions
  • 24 Kudos given
  • 29 Kudos received

User Activity

Hello all getting below error while running a cypher query: Cypher: LOAD CSV WITH HEADERS FROM 'file:///cert_exams1.csv' AS line //return certs Match(n:Certifications) where n.name = line.`Certificate Name` with n.name as na, SPLIT(line.`Prerequis...
Hi All, I am working on some data ingestion using python in neo4j. I am using multiple transactions to run a process, if any transaction fails then it should rollback each transaction. while I am trying to do that then performance is not good. even a...
Hi Everyone, I am running below query with is dealing with large volume of data and it enters in a forever loop. match (t1)-[:IN|OUT]-(a1:add) where a1.add= 'abc' return collect(DISTINCT t1) AS tx is there any way to make this working ?? I am having...
Please find Explain of my query: And my query for this plan is: EXPLAIN match (t1:tr)-[o]-(a1:add) where a1.add= 'xyz' with distinct t1.id as ids-----(these IDS are around 50k in count) Match (t3:tr)-[o2:exit]->(a2:add) where t3.id in (ids) with d...
Hi Everyone, I am facing a very common issue with the cypher. when I am trying to run the below query, I am not getting any output and it running forever. match (t3:tx)-[o2:exit]->(a2:add) where t3.id in [list which contains 40k records] return disti...