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.

Amal
Node
since ‎03-09-2019
‎06-01-2022

User Statistics

  • 4 Posts
  • 0 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

Hello everyone I want to create/drop a database from my python app. How can I do it? I tried the following but it fails to do. with driver.session(database='system') as session_1: t_1 = session_1.begin_transaction() result = t_1.run('''CREATE...
I'm connecting to the server via bolt. I need to delete all nodes and relations then create a new graph. Once I run with driver.session() as session: session.run("""CALL apoc.periodic.iterate('MATCH (n) RETURN n', 'DETACH DELETE n', {batchSize:10...
Hello all, I'm trying to modify a code by Michael Hunger. What I want is to add a sentence number to each word. {text} is a list of words. S is initialized by 1 and it will be used to update the sentence number. If the current WORDS[i] is a dot (full...