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

HTTP API Auth and Cluster support

I have a few items I'd like confirmation on regards the NEO4J (version 4.4.x) HTTP API: 1. What Auth types does the HTTP API support? The documentation only mentions Basic - so does this mean it does not support SSO (Bearer token) Auth? 2. Can I conf...

Node Embedding for disconnecd nodes

Hi, I have 68 small graphs, each has some nodes that are disconnected (it doesn't have any incoming/outgoing edge). The end goal is to classify each node (Node Classification) based on its class (there is only one class for each node, and features fo...

A2Amir by Node
  • 197 Views
  • 0 replies
  • 0 kudos

Resolved! Spark Connector Run Cypher statement

I am able to perform spark.read and save into a dataframe. I am also able to write a dataframe as a node or relationship from  Spark to Neo4j. I would like to create a pipeline where I can run most of the creation and deletion work from Spark (withou...

learner by Node Link
  • 484 Views
  • 1 replies
  • 1 kudos

How to Connect to a Project with Node.js

Hello, I made a project database in Neo4j Desktop and ran some queries in Neo4j Browser. Now I'm trying to add a couple nodes via Node.js running a JavaScript file, but it's not working. Here's the code in the JavaScript file: const neo4j = require('...

Spring Data Neo4j auditing - can it keep old data?

Hi,I need to implement some kind of auditing. I am using Spring Data Neo4j. I see it supports auditing, but it seems rather limited to me. Is it possible to keep old data with the auditing, like e.g. Envers does it? So I don't have to save old data m...

ivanc by Node
  • 355 Views
  • 1 replies
  • 0 kudos

Resolved! OGM fixed delay of 1sec.

Hi to All, I recently tried to adopt Neo4j as a DBMS for a "typical" 3-tier architecture in Java, adopting the OGM library (vers. 3.2.36). In first place, I want to outline that the project adopts the JEE stack, with JAX-RS for realizing REST service...

Python - generator already executing

Hi, We are using Neo4j driver for python(version 4.2.1). We have a live system that writes/read from the neo4j cluster all the time, And once in a while we are getting this exception: Traceback (most recent call last): File "main.py", line 85, in o...

dan3 by Node Link
  • 2847 Views
  • 4 replies
  • 3 kudos

Connection failed with .Net app

I am implementing the example in Neo4j .NET course and I got this exception here  public static async Task InitDriverAsync(string uri, string username, string password){_driver = GraphDatabase.Driver(uri, AuthTokens.Basic(username, password));await _...

Resolved! 4.x server-side routing on Aura

I'm working on updating my Crystal Neo4j connector to the latest protocols and I'm struggling a bit. I've got a 3-node cluster running on Neo4j Aura, and when I send my ROUTE command, I get back this structure:   {"servers" => [{"addresses" => ...

How to Update Relationship In SDN 6 ?

Currently, We're working on OGM base implementation. We like to move on SDN 6 But I face problem to update relationship by neo4jRepository. I mention domain model. @Node public class Activity { @Id @GeneratedValue protected Long graphId; ...