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

Driver for Dart

Howdy, I want to ask you when you will make Driver for Dart language? please do one soon because I love neo4j database and I want to use it in my Flutter App and I already did my server side by Dart. Best Regards,

Resolved! Struggling with Transactions

Hi, I am reading the Neo4j Go Driver Manual v4.2 and there is a session with a non-functional piece of code on page #23 I want to create an ACID transaction similar to the code above. Then I'm looking for a gist or Github repository or an example of...

3X_d_1_d1cc9e918f49dee042eb680defeef09556f7e348.png

How to get the result of a system query in a web app

Hello, I'm building a web app using Node js and express. I'm able to get the result of queries using rest api and javascript driver but I want to kwow how to get the result of a query on system database using these methods. Find attach the code that ...

3X_e_b_eb546f0e30df4dd0ae07dd7f39a6f2cc3214ae35.png 3X_b_c_bc34dbc9a28544a1c7d257b0f084a81f4822ae34.png

Resolved! Path query with a single node

Using the cypher-dsl, Is it possible to create a query like, MATCH p = (n:Movie) RETURN p Seems like Cypher.path("p").definedBy(..) only takes a RelationshipPattern and not a Node, so I can't do something like, Cypher.path("p").definedBy(node("Movie"...

aldrinm by Node Link
  • 503 Views
  • 1 replies
  • 1 kudos

Graphql schema direction value through API

We are trying to create GraphQL API to connect neo4j Database in which we are trying to connect other schema Type in base node schema type as below CUSTOMER_REL: [Customer_Base] @relation(name: "CUSTOMER_PHONE", direction: IN) Is there any way i can...

Sometimes failing Persisting Relationship

Hey there, currently we are using Spring boot 2.3.4 with neo4j-ogm 3.1.13 and spring-data-neo4j 5.3.4. I had difficulties moving to next version, so I ask you for support for this setup. I have a class A which contains a property as follows. @NodeEnt...

Resolved! Getting node type from Java Query

Hey everyone, i using a java driver to query a graph database in java and get their values. I am working on transforming the data structure of the result to suitable data structure to apply my own algorithms. So i am applying a query now : "Match (n)...

Conditional Property Creation from DataFrame

Hello, I am have a Python program that reads data from an Oracle database into a Pandas DataFrame. I then use Cypher to unwind the rows and create nodes with properties. Sometimes the values returned from Oracle are null. In the case of numeric fiel...

Project Java results to neo4j browser?

Hello everyone, So my idea is to use java to query the database and obtain results, because i want to modify and create graph algorithms. I have managed to connect and apply simple queries on the database through java using the java-driver of neo4j. ...

Py2neo or neomodel?

Hi Folks, I would like to know whats the difference between py2neo and neomodel? I want to build a web application which will later go into production.Some pros and cons would be a good insight for me to make a decision. Thanks in advance. Best Regar...

Retrieving a graph via GraphQL

The result of a GraphQL query is usually a tree. Is there a way to retrieve a graph via GraphQL? To give an example: If I have a graph (in neo4j) where Joe, Amy and Bob are mutual friends, I can query like this: {Person(name: "Joe") { name fr...