I have two unwinds, that create some relationships and nodes, but if the list for the first unwinds is empty, the second unwind doesn't execute.
How can I fix that?
CALL apoc.periodic.iterate(
"
UNWIND $POSTS as post
RETURN post
...
Hi, I want to match blogs that have most like interaction with certain tags (in the example I used dog) but posted in it less than 10 times. How can I achieve that?
Currently, I get this error message
Invalid use of aggregating function count(...) in...
I am using the neo4j driver for nodejs. When I try to run parallel writes using the .run method I get an error that says you cant make a other transaction while a other is pending, is there some simple solution or I just need to create multiple Sessi...
Hi i am using nodejs with neo4j-driver and i create relations like this (USER-[ values from the object ]->SUBREDDIT)
Username is predefined so this isn't a problem but the subreddit name and values of relations is inside the object.
The object is rea...