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

PSQLException on SQL query from Neo4j

Hi All, I am trying to execute a Postgres SQL query through:    apoc.load.jdbcParams   and I try to give it an Array as a parameter like this: WITH "select * from data.table where id = ANY(?)" as sql CALL apoc.load.jdbcParams("jdbc:postgresql://db/...

Spring data Neo4j 6.0 and Multi-Tenancy

Hello! I am currently working on a project that uses Spring Data Neo4j, and I am working on migrating from version 5 to the latest version 6. In the previous version, we used a particular approach with spring data where each tenant had a credential s...

SSHTunnelForwarder does not work with Neo4j

Hello everyone!I am trying to connect to a hosted instance of neo4j via SSHTunnel in Python code like this:   self.tunnel = SSHTunnelForwarder( (self.creds["SSH_HOST"]), ssh_username=self.creds["SSH_USER"], ...

Hosting options and questions

I would like to use Neo4j for our start up but I have a few questions before making my final decision. I want to use AuraDB for the first couple of years. But as the project scale, I would like to have an option to self-host the DB in the future. I f...

nn2t by Node
  • 275 Views
  • 1 replies
  • 0 kudos

Resolved! ClassCastException using Multi level Projection

@Node public class User { @Id private String id; private String username; @Relationship("ACTIVE_BUSINESS_UNIT") private BusinessUnit activeBusinessUnit; } @Node public class BusinessUnit { @Id private String id; priv...

mick by Node
  • 749 Views
  • 4 replies
  • 0 kudos

allShortestPaths implementation ?

Hi, I am currently using the following query to count the number of shortest paths between 2 nodes :  MATCH s = allShortestPaths((a:Node{name:"A"})-[:REL*]-(b:Node{name:"E"}))RETURN count(s) But I have no idea what algorithm is running in the backgro...

Resolved! Node depth (DFS/BFS)

Hi all, My question is very simple : Is there anyway to obtain the node depths from the results produced by BFS/DFS algorithms. I appears that these algos only produce the path they used to visit the graph. Thank you in advanvce Best, Augustin

Resolved! Saving Interface based Projections

Is it possible to save Interface based Projections? Can't see anything in the documentation saying you can't, but getting the following error when I try: org.springframework.data.mapping.MappingException: Constructor parameter names aren't available,...

mick by Node
  • 967 Views
  • 5 replies
  • 0 kudos