hello im trying to get variables of an array and create node for them so i have a foreach words . forEach (( res , index ) => { to get all of the items and then run this q...
Hi, I have some other issues in my Spring Boot example with the usage of Neo4j to calculate the Shortest path. I updated my repository again. I added some new options (many cities with routes inste...
Is it possible to execute query with 2+ statements in a single transaction.run call? const query = `
MERGE (:TestLabel {name: $name1});
MERGE (:TestLabel {name: $name2});`;
cons...
Hi, I have a problem about running any test of AppApplicationTests. When I run with docker and try any request, I cannot have any issue. org.neo4j.driver.exceptions.AuthenticationException: T...
I'm new in this, but I have read tutorial before doing this. I have a node: @Node
@Data
@EqualsAndHashCode(exclude= {"parent", "roleList"})
public class Department extends AbstractEntity impl...
Hi, I have a problem about running all tests regarding Neo4j in my Spring Boot App. When I try to run any method of AppApplicationTests, I only see an infinite loop on the console and the meth...
Hi, As I cannot get Neo4j Contanier working, I think there is a problem in my docker-compose.yml When I run this command (`docker-compose up -d`), It works. I got an error shown below when I try t...
Hi everyone! I am using go-client and i can't understand one thing - should I commit or rollback transactions manually? WriteTransaction and ReadTransaction are used in such way: &n...
I have a cypher query and want to catch related nodes for each node in the result.
So my working raw cypher query looks like :
MATCH p = (:lookingType)<-[:specifiedRelation]-()
WITH nodes(p) ...
I have a problem about saving route with City in Spring Boot. I think my issue is located at CityRepository and RouteRepository. public interface CityRepository extends Neo4jRepository<City ,...