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

Interface Support in Neo4J-GraphQL-js

Hey guys, I've seen some conflicting comments in the neo4j-graphql-js GitHub repository as to whether interfaces are supported in the autogenerated resolvers generated from a schema SDL file. It looks like they may be supported as inline fragments ba...

jman by Node Link
  • 899 Views
  • 1 replies
  • 0 kudos

Query without TX in Spring

What is the best practice to execute a query WITHOUT a transaction inside a Java Spring-Data-Neo4j app? Is there an easy way to get to a driver's session (instead of an OGM session) or an even better solution to do this? Reason for asking: I want to ...

chris3 by Graph Buddy
  • 801 Views
  • 2 replies
  • 0 kudos

OGM save depth for relationship

Consider the following code: @NodeEntity public class Entity { ... } @RelationshipEntity public class RelationInstance{ @StartNode Entity src; @EndNode Entity dst; ... } Entity en1 = new Entity(); session.save(en1); Entity en2 = new Entity()...

Stored procedures with upcoming Java client v4.0.0

Hi, I have a question related to stored procedures and upcoming Java client v4.0.0. Looking at SessionConfig#withFetchSize method javadoc, it will be possible to "specify how many records to fetch in each batch for this session". Does this batch fetc...

Relationships with Properties

I have two labels with a relationship that has one property: type Match @relation(name: "MATCH") { from: Company to: MasterOrg type: String } type MasterOrg { id: String name: String company: [Match] } type Company { permId: Float name: String master...

Execute code sequentially in write transaction

Hi there, This may be my knowledge of JavaScript, but I can't figure out how to run two statements sequentially within the transaction functions API. this.session.writeTransaction(tx => { tx.run("CREATE (p:Person {id: 1})").then(r => { ...

amoebae by Node Link
  • 1252 Views
  • 2 replies
  • 0 kudos

Number of threads used by Neo4j driver

Hello, I am using the driver 1.7.5 (java) in an async way and I noticed a weird behavior. It seems that every incomming read request Session session = driver.session(READ); session.readTransactionAsync(tx -> tx.runAsync(query, parameters) creates two...