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
  • 574 Views
  • 0 replies
  • 0 kudos

Resolved! GraphQL API ReferenceError: resolvers is not defined

I am following along with the Full Stack GraphQL Book Club. In Chapter 4: The Neo4j GraphQL Library, we are setting up GraphQL API to work with Neo4j. The code given is the class works.  However, when I try changing to match my data schema I just get...

Resolved! Where can I find the official Neo4j JDBC drivers?

I am trying to connect my Rapidminer process with Neo4j database but getting error. Initially, I thought it might be some issue from the Rapidminer side, but it seems that the JDBC driver has some flaw. I have asked in the Rapidminer community and he...

Spring Data Neo4j saving is too slow (6s)

@Getter@Setter@ToString@JsonInclude(JsonInclude.Include.NON_EMPTY)@Node("HeadOrganization")public class HeadOrganization { @Id @GeneratedValue(UUIDStringGenerator.class) private String headOrgUUID; @NotNull(message = "headOrgType must not...

ppm10103_0-1672257980117.png

Resolved! Neo4j Movie DB to JAVA

Hi, Neo4j is new for me and i started with the Hello World example.  Neo4j aus Java verwenden - Entwicklerhandbücher If i tried to run this file. I got the follwing erros. - Unable to connect to localhost:7687, ensure the database is running;  OR - A...

Resolved! integrate neo4j-graphql driver in apollo v4

Hi everyone I tried to setup a GraphQL server with Apollo for my neo4j database following the driver configuration tutorial. The problem is that page is completely obsolete regards to the Apollo part as the tutorial is (probably, and at least in the ...

Resolved! Neo4j python driver with asyncio.gather() crashes

I've been trying to run some read queries concurrently using asyncio tasks and gather(). I've tried to run the queries concurrently within a transaction. session and driver, but they all fail. Does anyone have an idea on how to run multiple read quer...

Bertel by Node
  • 777 Views
  • 4 replies
  • 2 kudos

Resolved! calling apoc stored procedure from the MATCH cypher query

I have written below query   MATCH (p:Person) WITH p, apoc.do.when(false,   'CREATE (a:Node{name:"A"}) RETURN a AS node',   'CREATE (b:Node{name:"B"}) RETURN b AS node',   {} ) as nodes Return *   When I run this above query this is returning  Unknow...

OGM example project

On the Developer Guides OGM page (https://neo4j.com/developer/neo4j-ogm/) there is a reference to an example project the explain the concepts further: https://github.com/neo4j-examples But I can only find a SDN project there. Where can I find the cor...

kmatt by Node
  • 225 Views
  • 1 replies
  • 0 kudos

How to close neo4j browser connections

How to close neo4j browser connections, When I run the below query    " CALL dbms.listConnections() "   It is returning more  connections  (150 ) in hundreds even though only couple of users are using, how to close these connections OR how to manage ...