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

Resolved! Driver Neo4j to Java in JAR

Hello everyone, I would like to know where can find the neo4j driver to java in .jar format. I have found settings in Maven, Gradle and Grails at this link: https://neo4j.com/developer/java/. However, I don't use them and would like to get the driver...

Resolved! Creating a datetime native type with spring-data-neo4

I'm trying to create a neo4j native datetime type (Temporal (Date/Time) values - Neo4j Cypher Manual) with spring data neo4j. I have a rest controller which takes an object as parameter, this object is then directly saved to neo4j. I skip the rest co...

3X_3_2_3293a28239742eb745fac03766f94dcdc0ae7ec9.png

Specify database name to use

Hello, I want to know how can we specify the database name in the configuration, as like : pring: data: neo4j: uri: username: password: Thank you

madiskou by Graph Buddy
  • 721 Views
  • 1 replies
  • 0 kudos

Named query containing the internal ID

I was trying to query my node Person by its internal ID and the code of its City like this: Optional<Person> findByIdAndCityCode(Long id, String cityCode); but the generated query behind this tries to access the ID as a property, like this: MATCH (n:...

arusev by Node Link
  • 1333 Views
  • 6 replies
  • 0 kudos

Resolved! Fastest way to read in a DirectoryTree?

I am reading in a directory tree from the disk. While I traverse the directories I am directly streaming them via IEnumerable to my asynchronous database methods. Since they are asynchronous I can't rely on the correct order (parent before child dire...

Resolved! Availability of GraphQL for Neo4j community edition 4.1.1

Hi, I am new to Neo4j and installed the latest community edition server 4.1.1. I was looking to enable the graphql endpoint for this version. However, when I go over to the graphql releases page on github, the last available version is for 3.5.15. Wi...

Error when querying interface

Hi! I am getting this error when prop3 is queried. Either the Entity type should provide a \"resolveType\" function or each possible type should provide an \"isTypeOf\" function." This is what my schema looks like (sample): interface A { … } interf...

Help: Pass Python parameter into Cypher statement syntax

So I have a working Cypher query within python which can query my Neo4j database and return a result when a property key value is hardcoded. It looks like this: piq = """MATCH (p:Person {bid: '123456789'}), blah blah blah """ with driver.session() as...

GraphQL query returning list of objects

Hello, In the schema.graphql file, I'd like to define a type Query that returns a String with a list of Objects. Let's say I have a query defined as below, how should I set the return type [String, listofConnections ] ? type Query { myQuery(id: Int)...

Neo4j parallel connection using py2neo

Hi, I am connecting to NEO4J servers using py2neo by spawning parallel threads from my python client. Approach 1 : Creating 1 connection per each thread. Works fine but it creates multiple parallel connection to server thereby increasing the total n...

modsub by Node
  • 965 Views
  • 2 replies
  • 0 kudos

Python neo4j driver write transaction

Hi All, In our application we execute many create nodes and relationships queries(we are working with Neo4j v4 cluster, with 3 core servers). So we created a transaction for our session and we are using the run function for each create query like thi...

dan3 by Node Link
  • 620 Views
  • 0 replies
  • 0 kudos

Working on multiple databases with py2neo/Neo4j python driver

Hi All, In our application we need to work with multiple database in neo4j cluster (one database per customer). We noticed that in the basic Neo4j driver doesn't we cannot change the database name parameter, so we start working with py2neo(v5, pre-re...

dan3 by Node Link
  • 1928 Views
  • 2 replies
  • 3 kudos

How can I configure to print out query cypher in the console & How can I use The Neo4j Graph Algorithms Library DFS algorithm in Spring boot project

I am using Spring boot to build an app with neo4j. <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-neo4j</artifactId> </dependency> application.properties server.port=8080 spring.data.neo4j.e...

jayxu688 by Node Link
  • 2047 Views
  • 0 replies
  • 0 kudos