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

Transient data access exception even after retries

Hi, in one of my customer-facing services, I am getting   org.springframework.dao.TransientDataAccessResourceException: Server at neo4j-core-xxxxxxx-xxx.production-orch-xxxx.neo4j.io:7687 is no longer available; Error code 'N/A'; nested exception is ...

potato by Node Link
  • 177 Views
  • 0 replies
  • 0 kudos

Creating a chrome extension to interface with a neo4j db

I want to build a chrome extension to perform some read and write transactions on a neo4j database which is on the cloud.I wanted to know if it is possible to install the javascript driver into the extension itself. If this is not possible, the only ...

raster by Node
  • 156 Views
  • 0 replies
  • 0 kudos

how create cypher query with conditional filters

I'm working on a model of relationships where a Profile has Preferences and Preferences have Filters, some of these Filters can be required or not, based on that I want to filter and bring the results of the filters, a requirement is always to try to...

Resolved! OGM session.query() does not return my custom projection

Hi all! I am facing a strange issue while migrating my old Neo4j code to the new OGM 3.2.38. When I run the following query in my browser MATCH (a:Attribute)--(c:Class {name: 'Dog'})--(b:Attribute) RETURN a.name as nom1,c.name as nom2,b.name as...

Resolved! Why do connections pile up (Java Driver 4.4.9)?

I am using a single Neo4J driver object (in a Jersey Binder class as an instance of a singleton). The driver is created like this: Config config = Config.builder() .withMaxConnectionLifetime( 30, TimeUnit.MINUTES ) .withMaxConnectionPoolS...

BairDev by Node Clone
  • 726 Views
  • 4 replies
  • 0 kudos

Error in graphql

BH trying to follow this tutorial https://neo4j.com/developer/graphql/ but when I enter the exact query they say to with the exact same nodejs code I get the following error [![enter image description here](https://i.stack.imgur.com/l212C.jpg)](https...

Anonymous by Not applicable
  • 481 Views
  • 3 replies
  • 0 kudos

Resolved! @Relationshipproperty is not working with spring boot

Hi Team, I tried to relationship property in a spring boot application. Nodes created, but the relationship is not connected between the nodes.Code belows     @Node(value = "Person") public class Person { @Id private String PersonId; @Relationshi...

Causal Cluster Deployment using Terraform

Hi there, I followed the instructions from here: https://neo4j.com/docs/operations-manual/4.4/kubernetes/quickstart-cluster/server-setup/ and deployed a cluster of three core members using Terraform.  Used helm-charts: https://github.com/neo4j/helm-c...

TheSch_0-1668675634470.png
TheSch by Node
  • 247 Views
  • 0 replies
  • 0 kudos

Resolved! Aws lambda with Neo4jGraphQL Async Schema

Hello friends. I'm working with AWS Lambda using NodeJS. I had managed to create a GraphQL server with the Neo4J generated schema - that is until getting the schema turned into an Async function call. My old code import { ApolloServer } from 'apollo-...

joe5 by Node Link
  • 898 Views
  • 3 replies
  • 4 kudos

Spring Data Neo4j slow save

Good Morning everyone. I'm having trouble saving entities, especially with relationships: basically the call takes over 1 second. I'm using Spring Data Neo4j 6.3.5, and the graph is pretty simple, can find attach below.   This is the Java Class for ...

Screenshot 2022-11-14 at 10.20.42.png filippocozzini_0-1668419545561.png

How to implement an interactive search function

Hello, I want to develop a interactive search function using neo4j javascript driver.  The approximate steps are as follows Start a fulltext search sessionTake the first 10 results and display them on a html listview (at this time, server paused the...

Spring Data Neo4j mapping Yens algorithm result

Hi, I want to execute Yen's algorithm using Query annotation in Spring Data. It works but I have problem with mapping the paths: in option A: I'm mapping to List<NodeName>, it returns all of nodes in one list without separating paths in option B: I'm...

xenoxi by Node
  • 548 Views
  • 4 replies
  • 0 kudos