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.

Rogie
Node Link
since ‎11-25-2019
‎06-01-2022

User Statistics

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

User Activity

I'm having trouble debugging what's going on in my workflow: from neo4j import GraphDatabase def get_results(db): q = " ... my query ..." driver = GraphDatabase.driver(uri, auth=("neo4j", "pass")) db = driver.session( with db.begin_tr...
I would like to count how many (User) nodes exists for a which there is a direct relationship with a (Keyword) node. If I do Match (u:User)-[]->(k:Keyword) Return Count(u) then the same user may be counted multiple times since it can have connections...
I have code that reads data from the web, cleans it up, and stores it in Neo4j. I'm wondering how to "parallelize" this process, since getting the data from web can be slow sometimes. My current setup is something like this: In config.py : from neo4j...
I don't know what the correct way to start an empty db. I know that I can remove all nodes and relations by doing match (n) with n limit 10000 DETACH DELETE n; over and over again until everything is gone, but this is not reasonable to do on a h...
I'm currently needing to executing large queries of the form: UNWIND $data as row Merge (n:Node {id: row.id, name: row.name, ...}) I have millions of data rows I need to do this for, but I can't just do this with a single UNWIND query because neo4j ...
Kudos from