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.

Forum Posts

About the Drivers & Stacks category

All applications using Neo4j depend on drivers to execute statements to update or query data. Neo4j drivers are mostly built on the binary Bolt protocol. Official drivers exist for Java, JavaScript, .Net, Python, and Go and more. Other languages (R, ...

yolande by Community Team
  • 627 Views
  • 0 replies
  • 0 kudos

Resolved! merge multiple node with neo4j-driver in js

hello im trying to get variables of an array and create node for them so i have a foreachwords.forEach((res, index) => {to get all of the items and then run this query session.run(`MERGE (n:words{name:'${res}'})`) }but i get this error Queries cannot...

Logging queries executed in java driver

Hi, Im using neo4j java driver version 4.3.3. im not sure how to print the query being executed with values. Let consider the below usecase. the query is as follows, MATCH (p:Person {name : "John"}) RETURN p the java code is as follows, String query...

Resolved! Executing multi-statement query via NodeJS driver

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});`; const queryParams = { name1: 'Test Name 1', name2: 'Test...

aminzer by Node
  • 1029 Views
  • 2 replies
  • 1 kudos

Java embedded stop database

Hello,I do have a test on embedded community edition. This test make use of neo4j-admin import command. But to use this command, the database should be down. So I try :  embeddedDatabaseServer.databaseManagementService().shutdownDatabase("neo4j");  B...

paulB by Node Clone
  • 643 Views
  • 1 replies
  • 0 kudos

About the Drivers & Stacks category

All applications using Neo4j depend on drivers to execute statements to update or query data. Neo4j drivers are mostly built on the binary Bolt protocol. Official drivers exist for Java, JavaScript, .Net, Python, and Go and more. Other languages (R, ...

yolande by Community Team
  • 627 Views
  • 0 replies
  • 0 kudos

Resolved! Cannot plugin "apoc" in docker-compose.yml file

Hi,As I cannot get Neo4j Contanier working, I think there is a problem in my docker-compose.ymlWhen I run this command (`docker-compose up -d`), It works.I got an error shown below when I try to calculate the shortest path through `Dijkstra````org.ne...