Hey everyone!
I faced a strange behavior
My code is complicated, it includes "call apoc..." query, query Inside of it, and one more level
So I have to use quotes construction like:
"
*main code, calling*
> \"smth inside \"
"
when I run it neo4j desktop - it's fine (apoc.periodic.iterate returns 400 batches in 1 min approximately)
In python I copy exactly the same code, change
""
to
"\"
, execute it using gds.run_cypher("""my same code """) and the result I receive - nothing changed, 1 batch complete, 0 sec, 0 errors
Then I execute print(my same code), copy everything and execute again in Neo - and it's fine again
Why can this be happening?